Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ui/src/locales/lang/en-US/views/trigger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export default {
title: 'Trigger',
tip: 'When triggered, the system will automatically call task execution based on the input parameters settings',
task: 'Task',
next: 'Next Execution Time',
triggerTask: 'Trigger Task',
taskExecution: 'Task Execution',
triggerSource: 'Trigger Source',
Expand Down
1 change: 1 addition & 0 deletions ui/src/locales/lang/zh-CN/views/trigger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export default {
title: '触发器',
tip: '触发时系统将会根据入参设置自动调用任务执行',
task: '任务',
next: '下次执行时间',
triggerTask: '触发任务',
taskExecution: '任务执行',
triggerSource: '触发来源',
Expand Down
1 change: 1 addition & 0 deletions ui/src/locales/lang/zh-Hant/views/trigger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export default {
title: '觸發器',
tip: '觸發時系統將會根據入參設置自動調用任務執行',
task: '任務',
next: '下次執行時間',
triggerTask: '觸發任務',
taskExecution: '任務執行',
triggerSource: '觸發來源',
Expand Down
9 changes: 9 additions & 0 deletions ui/src/views/trigger/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,15 @@
</div>
</template>
</el-table-column>
<el-table-column
prop="next_run_time"
:label="$t('views.trigger.next', '下次执行时间')"
show-overflow-tooltip
>
<template #default="{ row }">
{{ datetimeFormat(row.next_run_time) }}
</template>
</el-table-column>
<el-table-column prop="desc" :label="$t('common.desc')" show-overflow-tooltip>
</el-table-column>

Expand Down