diff --git a/frontend/app/components/Client/Audit/AuditList/AuditList.tsx b/frontend/app/components/Client/Audit/AuditList/AuditList.tsx
index 4d7c93a54..5993aa7bb 100644
--- a/frontend/app/components/Client/Audit/AuditList/AuditList.tsx
+++ b/frontend/app/components/Client/Audit/AuditList/AuditList.tsx
@@ -46,7 +46,7 @@ function AuditList(props: Props) {
>
Name
-
Status
+
Action
Time
diff --git a/frontend/app/components/Header/SettingsMenu/SettingsMenu.tsx b/frontend/app/components/Header/SettingsMenu/SettingsMenu.tsx
index 5d443a842..52adc2068 100644
--- a/frontend/app/components/Header/SettingsMenu/SettingsMenu.tsx
+++ b/frontend/app/components/Header/SettingsMenu/SettingsMenu.tsx
@@ -12,6 +12,7 @@ interface Props {
function SettingsMenu(props: RouteComponentProps) {
const { history, account, className }: any = props;
const isAdmin = account.admin || account.superAdmin;
+ const isEnterprise = account.edition === 'ee';
const navigateTo = (path: any) => {
switch (path) {
case 'projects':
@@ -26,12 +27,16 @@ function SettingsMenu(props: RouteComponentProps) {
return history.push(clientRoute(CLIENT_TABS.INTEGRATIONS));
case 'notifications':
return history.push(clientRoute(CLIENT_TABS.NOTIFICATIONS));
+ case 'roles':
+ return history.push(clientRoute(CLIENT_TABS.MANAGE_ROLES));
+ case 'audit':
+ return history.push(clientRoute(CLIENT_TABS.AUDIT));
}
};
return (
{isAdmin && (
<>
@@ -42,6 +47,12 @@ function SettingsMenu(props: RouteComponentProps
) {