From c9c07445b7b27a3ca8464fb165633522c7875f3d Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Mon, 10 May 2021 13:22:40 +0200 Subject: [PATCH] ui: window/SyncJobEdit: disable autoSelect for remote datastore when changin the remote, there is a high chance that there are different datastores, and if a user does not pay attention, now the first store of the new remote is selected, instead of the one with the same name disable autoSelect and let the user manually select a remote datastore Signed-off-by: Dominik Csapak --- www/window/SyncJobEdit.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/window/SyncJobEdit.js b/www/window/SyncJobEdit.js index af4d2fa9..47e65ae3 100644 --- a/www/window/SyncJobEdit.js +++ b/www/window/SyncJobEdit.js @@ -182,6 +182,7 @@ Ext.define('PBS.window.SyncJobEdit', { fieldLabel: gettext('Source Datastore'), xtype: 'pbsRemoteStoreSelector', allowBlank: false, + autoSelect: false, name: 'remote-store', disabled: true, },