From 9d7d9ac29c68d95e1374488ef537290cbdf77828 Mon Sep 17 00:00:00 2001 From: Yurii Date: Mon, 2 Feb 2026 19:19:44 +0200 Subject: [PATCH] categories disable if not read access --- client/src/views/list-with-categories.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/views/list-with-categories.js b/client/src/views/list-with-categories.js index d2d980cdf8..10a261f4c5 100644 --- a/client/src/views/list-with-categories.js +++ b/client/src/views/list-with-categories.js @@ -111,7 +111,7 @@ class ListWithCategories extends ListView { this.categoriesDisabled = this.categoriesDisabled || this.getMetadata().get(['scopes', this.categoryScope, 'disabled']) || - !this.getAcl().checkScope(this.categoryScope); + !this.getAcl().checkScope(this.categoryScope, 'read'); if (this.categoriesDisabled) { this.isExpanded = true;