Skip to content

Commit

Permalink
- Adds Taggit link
Browse files Browse the repository at this point in the history
  • Loading branch information
sophia-massie committed Dec 3, 2024
1 parent 3ca6e93 commit 5a332df
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions react/src/pages/MainMenu/MainMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ const MainMenu = () => {
></img>
<div className={styles.version}>{'Version 2.17'}</div>
</div>

<ProjectListing />

<Button
className={styles.userGuide}
iconNameBefore="exit"
Expand All @@ -35,6 +33,22 @@ const MainMenu = () => {
>
User Guide
</Button>
<Button
className={styles.userGuide}
iconNameBefore="exit"
type="link"
onClick={(e) => {
window.open(
'https://www.designsafe-ci.org/user-guide/tools/visualization/#taggit-user-guide-basic-image-browsing-and-mapping',
'_blank',
'noopener,noreferrer'
);
// To prevent active box around link lingering after click
e.currentTarget.blur();
}}
>
Taggit User Guide
</Button>
</div>
<div className={styles.sponsorContainer}>
<a href="https://www.nsf.gov/">
Expand Down

0 comments on commit 5a332df

Please sign in to comment.