diff --git a/packages/nc-gui/components/smartsheet/grid/Table.vue b/packages/nc-gui/components/smartsheet/grid/Table.vue index 964ddc277f..ba11fa06f2 100644 --- a/packages/nc-gui/components/smartsheet/grid/Table.vue +++ b/packages/nc-gui/components/smartsheet/grid/Table.vue @@ -1270,7 +1270,7 @@ onKeyStroke('ArrowDown', onDown) :trigger="isSqlView ? [] : ['contextmenu']" overlay-class-name="nc-dropdown-grid-context-menu" > -
+
import type { ColumnReqType, ColumnType } from 'nocodb-sdk' -import { RelationTypes, UITypes, isLinksOrLTAR, isVirtualCol } from 'nocodb-sdk' +import { RelationTypes, UITypes, isLinksOrLTAR } from 'nocodb-sdk' import { ActiveViewInj, ColumnInj, diff --git a/packages/nc-gui/components/virtual-cell/components/ListChildItems.vue b/packages/nc-gui/components/virtual-cell/components/ListChildItems.vue index 0f5cd56533..d05a6bd4ab 100644 --- a/packages/nc-gui/components/virtual-cell/components/ListChildItems.vue +++ b/packages/nc-gui/components/virtual-cell/components/ListChildItems.vue @@ -134,10 +134,10 @@ onKeyStroke('Escape', () => { }) /* - to render same number of skelton as the number of cards + to render same number of skeleton as the number of cards displayed */ -const skeltonCount = computed(() => { +const skeletonCount = computed(() => { if (props.items < 10 && childrenListPagination.page === 1) { return props.items } @@ -222,7 +222,7 @@ const linkOrUnLink = (rowRef: Record, id: string) => {