From 34c77c2b36f1205d75289c11839b13f1d7a7cd09 Mon Sep 17 00:00:00 2001 From: Koen Kanters Date: Thu, 25 Apr 2024 22:25:36 +0200 Subject: [PATCH] fix(dashboard): fix modernExtend entities not appearing on dashboard --- src/components/dashboard-page/index.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/dashboard-page/index.tsx b/src/components/dashboard-page/index.tsx index 3774d5011..1cb14ea02 100644 --- a/src/components/dashboard-page/index.tsx +++ b/src/components/dashboard-page/index.tsx @@ -74,8 +74,7 @@ export const onlyValidFeaturesForDashboard = ( if (genericRendererIgnoredNames.includes(name)) { return false; } - - if (access & FeatureAccessMode.ACCESS_STATE && isOnlyOneBitIsSet(access)) { + if (access & FeatureAccessMode.ACCESS_STATE) { return filteredOutFeature; } if (Array.isArray(features) && features.length > 0) {