Browse Source

[FIX-4326][UI] Add description field to data source list (#4362)

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

5
dolphinscheduler-ui/src/js/conf/home/pages/datasource/pages/list/_source/list.vue

@ -32,6 +32,11 @@
</div>
</template>
</el-table-column>
<el-table-column :label="$t('Description')" min-width="100">
<template slot-scope="scope">
<span>{{scope.row.note | filterNull}}</span>
</template>
</el-table-column>
<el-table-column :label="$t('Create Time')" min-width="120">
<template slot-scope="scope">
<span>{{scope.row.createTime | formatDate}}</span>

Loading…
Cancel
Save