diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-11 22:29:31 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2024-09-30 13:33:45 +0200 |
commit | d97e17b92007af7c87c0622488545dcde8b08276 (patch) | |
tree | a9ee0d91d72a403a7e4dc246d7429a65b6924dee /apps/files/src/components/FileEntryMixin.ts | |
parent | be87dec2d9a5f8ab311651c25a22d871a567d2d1 (diff) | |
download | nextcloud-server-d97e17b92007af7c87c0622488545dcde8b08276.tar.gz nextcloud-server-d97e17b92007af7c87c0622488545dcde8b08276.zip |
fix(files): Add more visual move / copy notificationfix/files-add-move-info
* Resolves: https://github.com/nextcloud/server/issues/46645
This adds loading toast notification while the move operation is running.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/files/src/components/FileEntryMixin.ts')
-rw-r--r-- | apps/files/src/components/FileEntryMixin.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/src/components/FileEntryMixin.ts b/apps/files/src/components/FileEntryMixin.ts index 51e5acedf71..e5d6a27e96c 100644 --- a/apps/files/src/components/FileEntryMixin.ts +++ b/apps/files/src/components/FileEntryMixin.ts @@ -73,8 +73,9 @@ export default defineComponent({ uniqueId() { return hashCode(this.source.source) }, + isLoading() { - return this.source.status === NodeStatus.LOADING + return this.source.status === NodeStatus.LOADING || this.loading !== '' }, /** |