From b34c954837af3d73595e39638a2bdf5197cc34f0 Mon Sep 17 00:00:00 2001 From: gitstart Date: Thu, 2 Nov 2023 03:31:00 +0000 Subject: [PATCH] remove isChildrenLoading.value = true Co-authored-by: gitstart Co-authored-by: sheldon-welinga Co-authored-by: gitstart_bot --- .../components/virtual-cell/components/ListChildItems.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/nc-gui/components/virtual-cell/components/ListChildItems.vue b/packages/nc-gui/components/virtual-cell/components/ListChildItems.vue index cf864b30c9..0f5cd56533 100644 --- a/packages/nc-gui/components/virtual-cell/components/ListChildItems.vue +++ b/packages/nc-gui/components/virtual-cell/components/ListChildItems.vue @@ -60,8 +60,6 @@ const { displayValueProp, } = useLTARStoreOrThrow() -isChildrenLoading.value = true - const { isNew, state, removeLTARRef, addLTARRef } = useSmartsheetRowStoreOrThrow() watch( @@ -69,8 +67,6 @@ watch( (nextVal) => { if ((nextVal[0] || nextVal[1]) && !isNew.value) { loadChildrenList() - } else { - isChildrenLoading.value = false } }, { immediate: true },