pve-manager/www/manager6/form/PermPathSelector.js
Lukas Wagner 2cb9b31cb3 ui: perm path: increase width of the perm path selector combobox
ACL paths for notification targets can become quite long, e.g.:
/mappings/notifications/<target name>

Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
2023-08-16 11:11:21 +02:00

15 lines
276 B
JavaScript

Ext.define('PVE.form.PermPathSelector', {
extend: 'Ext.form.field.ComboBox',
xtype: 'pvePermPathSelector',
valueField: 'value',
displayField: 'value',
typeAhead: true,
queryMode: 'local',
width: 380,
store: {
type: 'pvePermPath',
},
});