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

This commit is contained in:
xiaojingXU 2021-01-04 10:04:58 +08:00 committed by GitHub
parent 66141d58f6
commit 0b71c77b2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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