ui: datastore: more NS awareness

verify is actually not yet ready in the backend

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht
2022-05-10 15:16:28 +02:00
parent e8112eb37b
commit 93b0659ff2
3 changed files with 68 additions and 24 deletions

View File

@ -29,6 +29,9 @@ Ext.define('PBS.BackupGroupChangeOwner', {
onGetValues: function(values) {
values["backup-type"] = me.backup_type;
values["backup-id"] = me.backup_id;
if (me.ns && me.ns !== '') {
values['backup-ns'] = me.ns;
}
return values;
},