mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-07 18:38:46 +00:00
KVComboBox: fix editable config
This commit is contained in:
parent
9f5ee9d970
commit
8ceed9b8be
@ -29,11 +29,14 @@ Ext.define('PVE.form.KVComboBox', {
|
|||||||
data : me.data
|
data : me.data
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (me.initialConfig.editable === undefined) {
|
||||||
|
me.editable = false;
|
||||||
|
}
|
||||||
|
|
||||||
Ext.apply(me, {
|
Ext.apply(me, {
|
||||||
displayField: 'value',
|
displayField: 'value',
|
||||||
valueField: 'key',
|
valueField: 'key',
|
||||||
queryMode: 'local',
|
queryMode: 'local'
|
||||||
editable: false
|
|
||||||
});
|
});
|
||||||
|
|
||||||
me.callParent();
|
me.callParent();
|
||||||
|
Loading…
Reference in New Issue
Block a user