From: Fabian Ebner Date: Mon, 16 May 2022 13:25:02 +0000 (+0200) Subject: ui: fix setting protection in namespace X-Git-Tag: v2.2.1~55 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=7ebd97e8eaa723f72655110b8d136136f1b41ccb;p=proxmox-backup.git ui: fix setting protection in namespace The ns parameter would not be included previously. Signed-off-by: Fabian Ebner --- diff --git a/www/datastore/Content.js b/www/datastore/Content.js index f7e1675b..21ce4964 100644 --- a/www/datastore/Content.js +++ b/www/datastore/Content.js @@ -685,25 +685,10 @@ Ext.define('PBS.DataStoreContent', { isCreate: false, autoLoad: true, - loadUrl: `${url}?${Ext.Object.toQueryString(params)}`, url, + extraRequestParams: params, items: [ - { - xtype: 'hidden', - name: 'backup-type', - value: type, - }, - { - xtype: 'hidden', - name: 'backup-id', - value: id, - }, - { - xtype: 'hidden', - name: 'backup-time', - value: time, - }, { xtype: 'proxmoxcheckbox', fieldLabel: gettext('Protected'),