mirror of
https://github.com/nextcloud/server.git
synced 2026-04-29 10:03:32 -04:00
fix: Fix endless spinner on file entries after triggering an action
When the toast shown while a file is being moved or copied was
introduced in 64cc7afb12 an additional condition was added to the
"isLoading" check of file entries. However, that additional condition
caused an endless loading spinner to be shown on file entries of the
"Shares" view (but not in other views) after an action was triggered.
Turns out that the condition was not actually needed for the toast, so
now it is removed again to solve the endless loading spinner.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
parent
a137a5183c
commit
a4d19ce7e6
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ export default defineComponent({
|
|||
},
|
||||
|
||||
isLoading() {
|
||||
return this.source.status === NodeStatus.LOADING || this.loading !== ''
|
||||
return this.source.status === NodeStatus.LOADING
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue