From: Erik Fastermann <e.fastermann@proxmox.com>
To: pbs-devel@lists.proxmox.com
Cc: Erik Fastermann <e.fastermann@proxmox.com>
Subject: [PATCH proxmox-backup v2 5/5] ui: datastore: disable browse action for root ns
Date: Wed, 6 May 2026 14:13:32 +0200 [thread overview]
Message-ID: <20260506121332.21896-6-e.fastermann@proxmox.com> (raw)
In-Reply-To: <20260506121332.21896-1-e.fastermann@proxmox.com>
Disable the browse action and tooltip for the root namespace.
Signed-off-by: Erik Fastermann <e.fastermann@proxmox.com>
---
changes since v1:
* cleaned up boolean logic
www/datastore/Content.js | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/www/datastore/Content.js b/www/datastore/Content.js
index 576e70a59..a2047148f 100644
--- a/www/datastore/Content.js
+++ b/www/datastore/Content.js
@@ -1241,13 +1241,14 @@ Ext.define('PBS.DataStoreContent', {
}
return 'pmx-hidden';
},
- isActionDisabled: (v, r, c, i, { data }) =>
- !(
+ isActionDisabled: (v, r, c, i, { data }) => {
+ const enableFile =
data.ty === 'file' &&
(data.filename.endsWith('.pxar.didx') ||
data.filename.endsWith('.mpxar.didx')) &&
- data['crypt-mode'] < 3
- ) && data.ty !== 'ns',
+ data['crypt-mode'] < 3;
+ return !enableFile && (data.ty !== 'ns' || data.root);
+ },
},
],
},
--
2.47.3
next prev parent reply other threads:[~2026-05-06 12:14 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-06 12:13 [PATCH proxmox-backup v2 0/5] fix #6691: allow search by comment in datastore content Erik Fastermann
2026-05-06 12:13 ` [PATCH proxmox-backup v2 1/5] " Erik Fastermann
2026-05-06 14:08 ` Shan Shaji
2026-05-06 15:06 ` Dominik Csapak
2026-05-06 12:13 ` [PATCH proxmox-backup v2 2/5] ui: datastore: fix content search empty list Erik Fastermann
2026-05-06 15:10 ` Dominik Csapak
2026-05-06 12:13 ` [PATCH proxmox-backup v2 3/5] ui: datastore: update code formatting with biome Erik Fastermann
2026-05-06 15:11 ` Dominik Csapak
2026-05-06 12:13 ` [PATCH proxmox-backup v2 4/5] ui: datastore: disable remove action for namespaces Erik Fastermann
2026-05-06 15:13 ` Dominik Csapak
2026-05-06 12:13 ` Erik Fastermann [this message]
2026-05-06 15:13 ` [PATCH proxmox-backup v2 5/5] ui: datastore: disable browse action for root ns Dominik Csapak
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260506121332.21896-6-e.fastermann@proxmox.com \
--to=e.fastermann@proxmox.com \
--cc=pbs-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox