Skip to content

Commit e6a6a43

Browse files
committed
fix: initialize sourceNode with empty tableNames in MigrationForm component TAP-8748
1 parent 679996b commit e6a6a43

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/dag/src/MigrationForm.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,9 @@ export default defineComponent({
336336
}
337337
338338
const getNewTask = async () => {
339-
const sourceNode = genDatabaseNode()
339+
const sourceNode = genDatabaseNode({
340+
tableNames: []
341+
})
340342
const targetNode = genDatabaseNode()
341343
const tableEditNode = genProcessorNode('table_rename_processor', {
342344
name: i18n.t('packages_dag_src_migrationeditor_biaobianji')

0 commit comments

Comments
 (0)