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:
Daniel Calviño Sánchez 2025-07-29 12:15:03 +02:00
parent a137a5183c
commit a4d19ce7e6

View file

@ -72,7 +72,7 @@ export default defineComponent({
},
isLoading() {
return this.source.status === NodeStatus.LOADING || this.loading !== ''
return this.source.status === NodeStatus.LOADING
},
/**