This is an automated email from the ASF dual-hosted git repository.
zhongjiajie pushed a commit to branch 2.0.2-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/2.0.2-prepare by this push:
new 4f4cbba [UI] Fix wrong dialogs for process definition's version info
(#7684)
4f4cbba is described below
commit 4f4cbba80d87b2385bfc03c855059ac89ae04f09
Author: Jiajie Zhong <[email protected]>
AuthorDate: Tue Dec 28 19:42:37 2021 +0800
[UI] Fix wrong dialogs for process definition's version info (#7684)
We should use process_definition.update_time instead of create time
to make more sence.
close: #7660
---
.../pages/projects/pages/definition/pages/list/_source/versions.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/versions.vue
b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/versions.vue
index 39e44ca..81f50da 100644
---
a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/versions.vue
+++
b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/versions.vue
@@ -36,7 +36,7 @@
<el-table-column prop="description"
:label="$t('Description')"></el-table-column>
<el-table-column :label="$t('Create Time')" min-width="120">
<template slot-scope="scope">
- <span>{{scope.row.createTime | formatDate}}</span>
+ <span>{{scope.row.updateTime | formatDate}}</span>
</template>
</el-table-column>
<el-table-column :label="$t('Operation')" width="100">