From 7ebd97e8eaa723f72655110b8d136136f1b41ccb Mon Sep 17 00:00:00 2001 From: Fabian Ebner Date: Mon, 16 May 2022 15:25:02 +0200 Subject: [PATCH] ui: fix setting protection in namespace The ns parameter would not be included previously. Signed-off-by: Fabian Ebner --- www/datastore/Content.js | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) 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'),