mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-05 05:38:30 +08:00
the start time must not be the same as the end
This commit is contained in:
parent
88d82b27dc
commit
c90a2af902
@ -190,6 +190,11 @@
|
||||
return false
|
||||
}
|
||||
|
||||
if (this.scheduleTime[0] === this.scheduleTime[1]) {
|
||||
this.$message.warning(`${i18n.$t('The start time must not be the same as the end')}`)
|
||||
return false
|
||||
}
|
||||
|
||||
if (!this.crontab) {
|
||||
this.$message.warning(`${i18n.$t('Please enter crontab')}`)
|
||||
return false
|
||||
|
@ -467,5 +467,6 @@ export default {
|
||||
'statistics': 'statistics',
|
||||
'select tenant':'select tenant',
|
||||
'Process Instance Running Count': 'Process Instance Running Count',
|
||||
'Please enter Principal':'Please enter Principal'
|
||||
'Please enter Principal':'Please enter Principal',
|
||||
'The start time must not be the same as the end': 'The start time must not be the same as the end'
|
||||
}
|
||||
|
@ -467,5 +467,6 @@ export default {
|
||||
'Statistics manage': '统计管理',
|
||||
'statistics': '统计',
|
||||
'select tenant':'选择租户',
|
||||
'Please enter Principal':'请输入Principal'
|
||||
'Please enter Principal':'请输入Principal',
|
||||
'The start time must not be the same as the end': '开始时间和结束时间不能相同'
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user