Преглед изворни кода

HUE-5374 [assist] Increase the context popover min width to prevent tab wrapping

Johan Ahlen пре 9 година
родитељ
комит
36b319a
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

@@ -1059,9 +1059,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 < 260) {
-                ui.size.width = 260;
-                $('.hue-popover').css('width', 260 + 'px');
+              if (ui.size.width < 310) {
+                ui.size.width = 310;
+                $('.hue-popover').css('width', 310 + 'px');
               }
             };
             break;