You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ki...@apache.org on 2020/12/21 07:01:23 UTC

[incubator-dolphinscheduler] branch dev updated: fix taskInstance submitTime is empty. (#4274)

This is an automated email from the ASF dual-hosted git repository.

kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 0bdef01  fix taskInstance submitTime is empty. (#4274)
0bdef01 is described below

commit 0bdef01db0ea6c39830ff14d15fa9731fa517bf8
Author: zhuangchong <37...@users.noreply.github.com>
AuthorDate: Mon Dec 21 15:01:15 2020 +0800

    fix taskInstance submitTime is empty. (#4274)
---
 .../src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue
index 649c8b5..7727ef1 100644
--- a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue
@@ -39,7 +39,7 @@
         </el-table-column>
         <el-table-column :label="$t('Submit Time')" width="135">
           <template slot-scope="scope">
-            <span v-if="scope.row.scheduleTime">{{scope.row.scheduleTime | formatDate}}</span>
+            <span v-if="scope.row.submitTime">{{scope.row.submitTime | formatDate}}</span>
             <span v-else>-</span>
           </template>
         </el-table-column>