mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-04 13:17:50 +08:00
When modifying the dag, if the DAG is not saved, it cannot be formatted
This commit is contained in:
parent
d1878ac1d7
commit
1c16c4f968
@ -181,6 +181,10 @@
|
|||||||
|
|
||||||
// DAG automatic layout
|
// DAG automatic layout
|
||||||
dagAutomaticLayout() {
|
dagAutomaticLayout() {
|
||||||
|
if(this.store.state.dag.isEditDag) {
|
||||||
|
this.$message.warning(`${i18n.$t('Please save the DAG before formatting')}`)
|
||||||
|
return false
|
||||||
|
}
|
||||||
$('#canvas').html('')
|
$('#canvas').html('')
|
||||||
|
|
||||||
// Destroy round robin
|
// Destroy round robin
|
||||||
|
@ -230,6 +230,7 @@ export default {
|
|||||||
id: payload
|
id: payload
|
||||||
}, res => {
|
}, res => {
|
||||||
resolve(res)
|
resolve(res)
|
||||||
|
state.isEditDag = false
|
||||||
}).catch(e => {
|
}).catch(e => {
|
||||||
reject(e)
|
reject(e)
|
||||||
})
|
})
|
||||||
|
@ -620,5 +620,6 @@ export default {
|
|||||||
zkDirectory: 'zkDirectory',
|
zkDirectory: 'zkDirectory',
|
||||||
'Directory detail': 'Directory detail',
|
'Directory detail': 'Directory detail',
|
||||||
'Connection name': 'Connection name',
|
'Connection name': 'Connection name',
|
||||||
'Current connection settings': 'Current connection settings'
|
'Current connection settings': 'Current connection settings',
|
||||||
|
'Please save the DAG before formatting': 'Please save the DAG before formatting'
|
||||||
}
|
}
|
||||||
|
@ -619,5 +619,6 @@ export default {
|
|||||||
zkDirectory: 'zk注册目录',
|
zkDirectory: 'zk注册目录',
|
||||||
'Directory detail': '查看目录详情',
|
'Directory detail': '查看目录详情',
|
||||||
'Connection name': '连线名',
|
'Connection name': '连线名',
|
||||||
'Current connection settings': '当前连线设置'
|
'Current connection settings': '当前连线设置',
|
||||||
|
'Please save the DAG before formatting': '格式化前请先保存DAG'
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user