Browse Source

fix: allow clicking through loading layer

pull/7202/head
mertmit 9 months ago
parent
commit
93695d29c5
  1. 5
      packages/nc-gui/components/smartsheet/grid/Table.vue

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

@ -1266,7 +1266,10 @@ onKeyStroke('ArrowDown', onDown)
></div>
</div>
<div ref="gridWrapper" class="nc-grid-wrapper min-h-0 flex-1 relative" :class="gridWrapperClass">
<div v-show="isPaginationLoading" class="flex items-center justify-center absolute l-0 t-0 w-full h-full z-10 pb-10">
<div
v-show="isPaginationLoading"
class="flex items-center justify-center absolute l-0 t-0 w-full h-full z-10 pb-10 pointer-events-none"
>
<div class="flex flex-col justify-center gap-2">
<GeneralLoader size="xlarge" />
<span class="text-center" v-html="loaderText"></span>

Loading…
Cancel
Save