From 9ed6a5151e3164e4071cc6c80594f3d9a2789931 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Mon, 9 Oct 2023 10:35:53 +0200 Subject: [PATCH] fix(ui): pref audit check for ee --- frontend/app/layout/data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/layout/data.ts b/frontend/app/layout/data.ts index 33d94de75..8e8ae4c49 100644 --- a/frontend/app/layout/data.ts +++ b/frontend/app/layout/data.ts @@ -121,7 +121,7 @@ export const preferences: Category[] = [ isEnterprise: true, isAdmin: true }, - { label: 'Audit', key: PREFERENCES_MENU.AUDIT, icon: 'list-ul', isAdmin: true }, + { label: 'Audit', key: PREFERENCES_MENU.AUDIT, icon: 'list-ul', isAdmin: true, isEnterprise: true }, { label: 'Team', key: PREFERENCES_MENU.TEAM, icon: 'people', isAdmin: true }, { label: 'Notifications', key: PREFERENCES_MENU.NOTIFICATIONS, icon: 'bell' }, { label: 'Billing', key: PREFERENCES_MENU.BILLING, icon: 'bell', hidden: true }