瀏覽代碼

[assist] Add the table comment to the title of table entries

Johan Ahlen 10 年之前
父節點
當前提交
796adb6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      desktop/core/src/desktop/static/desktop/js/assist/assistEntry.js

+ 1 - 1
desktop/core/src/desktop/static/desktop/js/assist/assistEntry.js

@@ -144,7 +144,7 @@
           return self.createEntry({
             name: table.name,
             displayName: table.name,
-            title: table.name,
+            title: table.name + (table.comment ? ' - ' + table.comment : ''),
             type: table.type,
             isTable: true
           });