瀏覽代碼

HUE-5739 [editor] Increase the min-width of the sql context popover to fit all tabs

Johan Ahlen 8 年之前
父節點
當前提交
999a7cd4eb
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      desktop/core/src/desktop/templates/sql_context_popover.mako

+ 3 - 3
desktop/core/src/desktop/templates/sql_context_popover.mako

@@ -1046,9 +1046,9 @@ from metadata.conf import has_navigator
             self.resizableHandles = "n, ne, e, se, s";
             self.resize = function (event, ui) {
               resizeLeftRightVertical(event, ui);
-              if (ui.size.width < 310) {
-                ui.size.width = 310;
-                $('.hue-popover').css('width', 310 + 'px');
+              if (ui.size.width < 350) {
+                ui.size.width = 350;
+                $('.hue-popover').css('width', 350 + 'px');
               }
             };
             break;