Skip to content

Commit

Permalink
feat: add requests to header menu
Browse files Browse the repository at this point in the history
  • Loading branch information
hegeaal committed Oct 23, 2023
1 parent 741fc1d commit 932c2c9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/app-nav-bar/app-nav-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ import {
PATHNAME_SPARQL,
PATHNAME_ABOUT_DATASETS,
PATHNAME_GUIDANCE,
PATHNAME_NEWS_ARCHIVE
PATHNAME_NEWS_ARCHIVE,
PATHNAME_REQUESTS
} from '../../constants/constants';

import { themeFDK, themeNAP } from '../theme';
Expand Down Expand Up @@ -121,6 +122,9 @@ const fdkItems = () => [
<SC.ListItem key={localization.menu.sparql}>
<Link href={PATHNAME_SPARQL}>{localization.menu.sparql}</Link>
</SC.ListItem>
<SC.ListItem key={localization.menu.requests}>
<Link href={PATHNAME_REQUESTS}>{localization.menu.requests}</Link>
</SC.ListItem>
</DropdownMenu>
</SC.ListItem>,
<SC.ListItem key={localization.menu.community}>
Expand Down

0 comments on commit 932c2c9

Please sign in to comment.