From 3a9037ba259dddfb0ed9b814b7f07d7cfda06f33 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Wed, 24 Apr 2024 13:39:45 +0200 Subject: [PATCH] ui: fix align mode of two column container 'stretch' is most often the wrong value, as that will stretch everything, to the height of the whole container, including fields. That is not desirable, since fields look not good when stretched this way (e.g. the controls are not correctly aligned). To fix it, simply set it to 'begin'. Signed-off-by: Dominik Csapak --- www/manager6/container/TwoColumnContainer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/manager6/container/TwoColumnContainer.js b/www/manager6/container/TwoColumnContainer.js index e8e5fca9..b7bf735a 100644 --- a/www/manager6/container/TwoColumnContainer.js +++ b/www/manager6/container/TwoColumnContainer.js @@ -10,7 +10,7 @@ Ext.define('PVE.container.TwoColumnContainer', { layout: { type: 'hbox', - align: 'stretch', + align: 'begin', }, // The default ratio of the start widget. It an be an integer or a floating point number -- 2.39.2