Browse Source

fix(nc-gui): use computed instead

pull/5903/head
Wing-Kam Wong 1 year ago
parent
commit
fbdb2c18da
  1. 2
      packages/nc-gui/components/erd/TableNode.vue

2
packages/nc-gui/components/erd/TableNode.vue

@ -16,7 +16,7 @@ const { data, showSkeleton, dragging } = defineProps<Props>()
const { viewport } = useVueFlow()
const table = toRef(data, 'table')
const table = computed(() => data)
const isZooming = refAutoReset(false, 200)

Loading…
Cancel
Save