Commit 16eff581 authored by zhu-mingye's avatar zhu-mingye

修复 **数据开发** 页面 数据源 && 元数据 的别名为空的问题

parent 4592269a
......@@ -186,7 +186,7 @@ const StudioDataBase = (props: any) => {
const onDeleteDataBase = (record) => {
Modal.confirm({
title: '删除数据源',
content: `确定删除该数据源【${record.alias}】吗?`,
content: `确定删除该数据源【${record.alias === "" ? record.name : record.alias}】吗?`,
okText: '确认',
cancelText: '取消',
onOk: async () => {
......
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