浏览代码

HUE-4904 [editor] Bump name length of saved query

Romain Rigaux 9 年之前
父节点
当前提交
e82a383
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      desktop/libs/notebook/src/notebook/templates/editor_components.mako

+ 1 - 1
desktop/libs/notebook/src/notebook/templates/editor_components.mako

@@ -1348,7 +1348,7 @@ ${ hueIcons.symbols() }
             </thead>
             <tbody data-bind="foreach: queries">
             <tr data-bind="click: function() { if (uuid != $root.selectedNotebook().uuid()) { $root.openNotebook(uuid, 'savedQueries'); } }, css: { 'highlight': uuid == $root.selectedNotebook().uuid(), 'pointer': uuid != $root.selectedNotebook().uuid() }">
-              <td style="width: 16%"><span data-bind="ellipsis: {data: name, length: 30}"></span></td>
+              <td style="width: 16%"><span data-bind="ellipsis: {data: name, length: 50}"></span></td>
               <td style="width: 50%; white-space: normal"><span data-bind="text: description"></span></td>
               <td style="width: 18%"><span data-bind="text: owner"></span></td>
               <td style="width: 16%"><span data-bind="text: localeFormat(last_modified)"></span></td>