From 369e3ecd0a8f18fb965dd546f7742f970f05f3f6 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Tue, 30 Jan 2018 10:34:14 +0100 Subject: [PATCH] fix #1635: correctly change maxIds in ControllerSelector in wizard we want to change the maxIds value even when not rendered, since in the wizard, the controller can change from a different panel in the tabpanel Signed-off-by: Dominik Csapak --- www/manager6/form/ControllerSelector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/manager6/form/ControllerSelector.js b/www/manager6/form/ControllerSelector.js index bc00eebf..66e41579 100644 --- a/www/manager6/form/ControllerSelector.js +++ b/www/manager6/form/ControllerSelector.js @@ -107,7 +107,7 @@ Ext.define('PVE.form.ControllerSelector', { flex: 2, listeners: { change: function(t, value) { - if (!me.rendered || !value) { + if (!value) { return; } var field = me.down('field[name=deviceid]');