ui: verify/sync: allow to optionally override ID again
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
ebab1e5ed9
commit
90915ab629
|
@ -220,6 +220,16 @@ Ext.define('PBS.window.SyncJobEdit', {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
advancedColumn1: [
|
||||||
|
{
|
||||||
|
xtype: 'proxmoxtextfield',
|
||||||
|
fieldLabel: gettext('Job ID'),
|
||||||
|
emptyText: gettext('Autogenerate'),
|
||||||
|
name: 'id',
|
||||||
|
allowBlank: true,
|
||||||
|
regex: PBS.Utils.SAFE_ID_RE,
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
xtype: 'inputpanel',
|
xtype: 'inputpanel',
|
||||||
|
|
|
@ -151,5 +151,15 @@ Ext.define('PBS.window.VerifyJobEdit', {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
advancedColumn1: [
|
||||||
|
{
|
||||||
|
xtype: 'proxmoxtextfield',
|
||||||
|
fieldLabel: gettext('Job ID'),
|
||||||
|
emptyText: gettext('Autogenerate'),
|
||||||
|
name: 'id',
|
||||||
|
allowBlank: true,
|
||||||
|
regex: PBS.Utils.SAFE_ID_RE,
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue