diff --git a/packages/nc-gui/components/erd/TableNode.vue b/packages/nc-gui/components/erd/TableNode.vue index 68f2c7d287..93e7c65d4d 100644 --- a/packages/nc-gui/components/erd/TableNode.vue +++ b/packages/nc-gui/components/erd/TableNode.vue @@ -2,7 +2,7 @@ import type { NodeProps } from '@vue-flow/core' import { Handle, Position, useVueFlow } from '@vue-flow/core' import type { LinkToAnotherRecordType } from 'nocodb-sdk' -import { UITypes, isVirtualCol } from 'nocodb-sdk' +import { isLinksOrLTAR, isVirtualCol } from 'nocodb-sdk' import type { NodeData } from './utils' import { MetaInj, computed, provide, refAutoReset, toRef, useNuxtApp, watch } from '#imports' @@ -86,7 +86,7 @@ watch( :class="index + 1 === data.nonPkColumns.length ? 'rounded-b-lg' : 'border-b-1'" >
diff --git a/packages/nc-gui/components/erd/View.vue b/packages/nc-gui/components/erd/View.vue index 2870b87a86..e38dd47020 100644 --- a/packages/nc-gui/components/erd/View.vue +++ b/packages/nc-gui/components/erd/View.vue @@ -1,6 +1,6 @@