mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-17 15:31:39 +00:00

ACL paths for notification targets can become quite long, e.g.: /mappings/notifications/<target name> Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
15 lines
276 B
JavaScript
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',
|
|
},
|
|
});
|