Skip to content

Commit 6bf1646

Browse files
authored
fix: show other-projects option in mobile view as well(#288)
* fixes #286: [show 'Other Projects' in mobile nav by mapping index 4 and updating description ] * revert: remove description for "Other Projects" in dropDownOptionsTools to maintain original content
1 parent 8743e8c commit 6bf1646

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/atomic/SimpleHeader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ const SimpleHeader = ({ label, target, primaryNav, onHamburgerClicked }) => {
189189
Products{" "}
190190
</Heading>
191191
<Box flex={"grow"} margin={{ left: "medium" }}>
192-
{[0, 1, 2, 3].map(i => (
192+
{[0, 1, 2, 3, 4].map(i => (
193193
<MobileNavItemInternalLink
194194
label={dropDownOptionsTools[i].label}
195195
description={dropDownOptionsTools[i].description}

0 commit comments

Comments
 (0)