Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/HelpMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const HelpMenu = (): JSX.Element => {
const tutorialLink =
location.pathname === "/viewer" ? (
<DropdownRouterLink to={TUTORIAL_PATHNAME} newTab={true}>
Quick start
Getting started
</DropdownRouterLink>
) : (
<DropdownRouterLink to={TUTORIAL_PATHNAME}>
Expand Down Expand Up @@ -97,7 +97,7 @@ const HelpMenu = (): JSX.Element => {
<>
<CustomDropdown
items={items}
titleText={"Help"}
titleText={"Resources"}
icon={DownArrow}
variant={ButtonClass.DarkSecondary}
/>
Expand Down
18 changes: 9 additions & 9 deletions src/containers/AppHeader/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,15 @@ const AppHeader: React.FC<AppHeaderProps> = ({
lastModified={lastModified}
/>
<div className={styles.buttonContainer}>
<DownloadTrajectoryMenu
isBuffering={isBuffering}
simulariumFile={simulariumFile}
isNetworkedFile={isNetworkedFile}
/>
<ShareTrajectoryButton
simulariumFile={simulariumFile}
isBuffering={isBuffering}
/>
<LoadFileMenu
key="select"
selectFile={loadNetworkFile}
Expand All @@ -106,15 +115,6 @@ const AppHeader: React.FC<AppHeaderProps> = ({
setConversionStatus={setConversionStatus}
/>
<HelpMenu />
<DownloadTrajectoryMenu
isBuffering={isBuffering}
simulariumFile={simulariumFile}
isNetworkedFile={isNetworkedFile}
/>
<ShareTrajectoryButton
simulariumFile={simulariumFile}
isBuffering={isBuffering}
/>
</div>
</div>
);
Expand Down