Browse Source

Merge pull request #6375 from nocodb/fix/fe-perf

fix: frontend performance
pull/6553/head
mertmit 11 months ago committed by GitHub
parent
commit
0ab6be4ce6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      packages/nc-gui/components/smartsheet/grid/Table.vue

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

@ -171,8 +171,6 @@ const tableBodyEl = ref<HTMLElement>()
const fillHandle = ref<HTMLElement>()
const cellRefs = ref<{ el: HTMLElement }[]>([])
const gridRect = useElementBounding(gridWrapper)
// #Permissions
@ -1414,7 +1412,6 @@ const handleCellClick = (event: MouseEvent, row: number, col: number) => {
<SmartsheetTableDataCell
v-for="(columnObj, colIndex) of fields"
:key="columnObj.id"
ref="cellRefs"
class="cell relative nc-grid-cell"
:class="{
'cursor-pointer': hasEditPermission,

Loading…
Cancel
Save