Browse Source

fix(nc-gui): incorrect lib path import

pull/7558/head
Ramesh Mane 9 months ago
parent
commit
6b9ea2aba4
  1. 2
      packages/nc-gui/composables/useViewSorts.ts
  2. 2
      packages/nc-gui/utils/dataUtils.ts

2
packages/nc-gui/composables/useViewSorts.ts

@ -1,6 +1,6 @@
import type { ColumnType, SortType, ViewType } from 'nocodb-sdk'
import type { Ref } from 'vue'
import type { UndoRedoAction } from 'lib'
import type { UndoRedoAction } from '~/lib'
import type { EventHook } from '@vueuse/core'
import {
IsPublicInj,

2
packages/nc-gui/utils/dataUtils.ts

@ -1,6 +1,6 @@
import { RelationTypes, UITypes, isLinksOrLTAR, isSystemColumn, isVirtualCol } from 'nocodb-sdk'
import type { ColumnType, LinkToAnotherRecordType, TableType } from 'nocodb-sdk'
import type { Row } from 'lib'
import type { Row } from '~/lib'
import { isColumnRequiredAndNull } from './columnUtils'
export const extractPkFromRow = (row: Record<string, any>, columns: ColumnType[]) => {

Loading…
Cancel
Save