From 6b9ea2aba4529514f92a0355acf42a9aad737381 Mon Sep 17 00:00:00 2001 From: Ramesh Mane <101566080+rameshmane7218@users.noreply.github.com> Date: Mon, 19 Feb 2024 03:41:22 +0000 Subject: [PATCH] fix(nc-gui): incorrect lib path import --- packages/nc-gui/composables/useViewSorts.ts | 2 +- packages/nc-gui/utils/dataUtils.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nc-gui/composables/useViewSorts.ts b/packages/nc-gui/composables/useViewSorts.ts index 79cf08dc90..ab510c2237 100644 --- a/packages/nc-gui/composables/useViewSorts.ts +++ b/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, diff --git a/packages/nc-gui/utils/dataUtils.ts b/packages/nc-gui/utils/dataUtils.ts index 229123547e..1bea695361 100644 --- a/packages/nc-gui/utils/dataUtils.ts +++ b/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, columns: ColumnType[]) => {