diff --git a/packages/nc-gui/components/erd/Flow.vue b/packages/nc-gui/components/erd/Flow.vue index 4264877e55..a0769282fd 100644 --- a/packages/nc-gui/components/erd/Flow.vue +++ b/packages/nc-gui/components/erd/Flow.vue @@ -28,7 +28,7 @@ function init() { onPaneReady(init) -watch([() => tables, () => config], init, { deep: true, flush: 'post' }) +watch([() => tables, () => config], init, { flush: 'post' }) onScopeDispose($destroy) diff --git a/packages/nc-gui/components/erd/RelationEdge.vue b/packages/nc-gui/components/erd/RelationEdge.vue index 4cc019632c..8bea4df042 100644 --- a/packages/nc-gui/components/erd/RelationEdge.vue +++ b/packages/nc-gui/components/erd/RelationEdge.vue @@ -17,9 +17,7 @@ interface RelationEdgeProps extends EdgeProps { isSelfRelation: boolean label: string } - markerEnd: string style: CSSProperties - targetHandleId: string } const props = defineProps() @@ -52,15 +50,7 @@ export default {