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 0b71c77  [FIX-4326][UI] Add description field to data source list 
(#4362)
0b71c77 is described below

commit 0b71c77b2d2ff85afe2b440e53773fe2c428bed3
Author: xiaojingXU <[email protected]>
AuthorDate: Mon Jan 4 10:04:58 2021 +0800

    [FIX-4326][UI] Add description field to data source list (#4362)
---
 .../src/js/conf/home/pages/datasource/pages/list/_source/list.vue    | 5 +++++
 1 file changed, 5 insertions(+)

diff --git 
a/dolphinscheduler-ui/src/js/conf/home/pages/datasource/pages/list/_source/list.vue
 
b/dolphinscheduler-ui/src/js/conf/home/pages/datasource/pages/list/_source/list.vue
index cc1cc6a..76725a6 100644
--- 
a/dolphinscheduler-ui/src/js/conf/home/pages/datasource/pages/list/_source/list.vue
+++ 
b/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>

Reply via email to