Quellcode durchsuchen

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

Johan Ahlen vor 10 Jahren
Ursprung
Commit
796adb6
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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
           });