ui: verify/sync: allow to optionally override ID again

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2022-05-16 18:48:44 +02:00
parent ebab1e5ed9
commit 90915ab629
2 changed files with 20 additions and 0 deletions

View File

@ -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',

View File

@ -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,
},
],
}, },
}); });