Add timeout for video loading
This commit is contained in:
parent
47773c110c
commit
37e874cb09
|
@ -327,7 +327,10 @@ export default Vue.extend({
|
|||
}
|
||||
}
|
||||
|
||||
this.isLoading = false
|
||||
// TODO: Remove before release
|
||||
setTimeout(() => {
|
||||
this.isLoading = false
|
||||
}, 400)
|
||||
})
|
||||
.catch(err => {
|
||||
const errorMessage = this.$t('Local API Error (Click to copy)')
|
||||
|
|
Loading…
Reference in New Issue