Browse Source

fix taskInstance submitTime is empty. (#4274)

pull/3/MERGE
zhuangchong 4 years ago committed by GitHub
parent
commit
0bdef01db0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue

2
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>

Loading…
Cancel
Save