mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 06:36:00 +00:00
UX fix
This commit is contained in:
@@ -300,7 +300,10 @@
|
|||||||
initialValue: $values[`columns_${row}`],
|
initialValue: $values[`columns_${row}`],
|
||||||
sourceTableInfo: $sourceDbinfo?.tables?.find(x => x.pureName?.toLowerCase() == row?.toLowerCase()),
|
sourceTableInfo: $sourceDbinfo?.tables?.find(x => x.pureName?.toLowerCase() == row?.toLowerCase()),
|
||||||
targetTableInfo: $targetDbinfo?.tables?.find(x => x.pureName?.toLowerCase() == targetNameLower),
|
targetTableInfo: $targetDbinfo?.tables?.find(x => x.pureName?.toLowerCase() == targetNameLower),
|
||||||
onConfirm: value => setFieldValue(`columns_${row}`, value),
|
onConfirm: value => {
|
||||||
|
setFieldValue(`columns_${row}`, value);
|
||||||
|
targetEditKey += 1;
|
||||||
|
},
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
>{columnCount > 0 ? `(${columnCount} columns)` : '(copy from source)'}
|
>{columnCount > 0 ? `(${columnCount} columns)` : '(copy from source)'}
|
||||||
|
|||||||
Reference in New Issue
Block a user