Browse Source

fix: hide fill handle while loader is active

pull/8371/head
mertmit 5 months ago
parent
commit
fa6a759d4a
  1. 5
      packages/nc-gui/components/smartsheet/grid/Table.vue

5
packages/nc-gui/components/smartsheet/grid/Table.vue

@ -1277,7 +1277,10 @@ const showFillHandle = computed(
isFormula(fields.value[activeCell.col]) ||
isCreatedOrLastModifiedTimeCol(fields.value[activeCell.col]) ||
isCreatedOrLastModifiedByCol(fields.value[activeCell.col])
),
) &&
!isViewDataLoading.value &&
!isPaginationLoading.value &&
dataRef.value.length,
)
watch(

Loading…
Cancel
Save