소스 검색

[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
           });