Added event filter for logs

This commit is contained in:
Vladyslav Matsiiako
2022-12-18 21:53:21 -05:00
parent 9d41f753f4
commit 7d280d4e30
5 changed files with 233 additions and 25 deletions

View File

@@ -4,12 +4,12 @@ import { useEffect, useState } from 'react';
import Link from 'next/link';
import { useRouter } from 'next/router';
import {
faBook,
faBookOpen,
faGear,
faKey,
faMobile,
faPlug,
faTimeline,
faUser
} from '@fortawesome/free-solid-svg-icons';
import { faPlus } from '@fortawesome/free-solid-svg-icons';
@@ -153,8 +153,8 @@ export default function Layout({ children }: LayoutProps) {
},
{
href: '/activity/' + workspaceMapping[workspaceSelected as any],
title: 'Activity',
emoji: <FontAwesomeIcon icon={faBook} />
title: 'Activity Logs',
emoji: <FontAwesomeIcon icon={faTimeline} />
},
{
href: '/settings/project/' + workspaceMapping[workspaceSelected as any],