From a176e0672fa37bc817fc228f6cb341cef395f8a5 Mon Sep 17 00:00:00 2001 From: Piyush Date: Thu, 6 Mar 2025 07:23:25 +0000 Subject: [PATCH] loader issue fixed for files and folders in my shares and shared with tabs --- apps/files/src/components/FileEntryMixin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/src/components/FileEntryMixin.ts b/apps/files/src/components/FileEntryMixin.ts index 5ff67fbde6651..9d2efa35e6374 100644 --- a/apps/files/src/components/FileEntryMixin.ts +++ b/apps/files/src/components/FileEntryMixin.ts @@ -88,7 +88,7 @@ export default defineComponent({ }, isLoading() { - return this.source.status === NodeStatus.LOADING || this.loading !== '' + return this.source.status === NodeStatus.LOADING || (this.source.status !== undefined && this.loading !== '') }, /**