From 3775a7a18e95480051c3f8a6201b7d93cd2a448c Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Tue, 24 Feb 2026 13:52:54 +0800 Subject: [PATCH] fix(Data source): The table join function occasionally freezes the entire table join interface #917 --- frontend/src/views/ds/TableRelationship.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/views/ds/TableRelationship.vue b/frontend/src/views/ds/TableRelationship.vue index 67407929..3da3c8f3 100644 --- a/frontend/src/views/ds/TableRelationship.vue +++ b/frontend/src/views/ds/TableRelationship.vue @@ -299,6 +299,10 @@ const getTableData = () => { cells.value.push( graph.createNode({ ...item, + position: { + x: Number.parseInt(item.position.x), + y: Number.parseInt(item.position.y), + }, height: LINE_HEIGHT + 15, width: NODE_WIDTH, })