Commit 81da4418 authored by 邓超's avatar 邓超

fix: 修复建表校验报错

parent 2b8915f3
Pipeline #67274 passed with stages
......@@ -380,15 +380,15 @@ const TableView = props => {
// 默认字段不显示时要拼接上默认字段
TableFields = [...defaultData, ...TableFields];
}
if (checkMsg) {
notification.error({
message: '提示',
duration: 3,
description: checkMsg,
style: { whiteSpace: 'pre-wrap' },
});
return;
}
// if (checkMsg) {
// notification.error({
// message: '提示',
// duration: 3,
// description: checkMsg,
// style: { whiteSpace: 'pre-wrap' },
// });
// return;
// }
form.validateFields().then(validate => {
if (validate) {
if (!validate.tableName) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment