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 <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2021-05-10 13:22:40 +02:00 committed by Thomas Lamprecht
parent a4388ffc36
commit c9c07445b7
1 changed files with 1 additions and 0 deletions

View File

@ -182,6 +182,7 @@ Ext.define('PBS.window.SyncJobEdit', {
fieldLabel: gettext('Source Datastore'), fieldLabel: gettext('Source Datastore'),
xtype: 'pbsRemoteStoreSelector', xtype: 'pbsRemoteStoreSelector',
allowBlank: false, allowBlank: false,
autoSelect: false,
name: 'remote-store', name: 'remote-store',
disabled: true, disabled: true,
}, },