Skip to content

Commit

Permalink
docs: update version dropdown labels (#8786)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilhan007 authored Apr 17, 2024
1 parent 10fd95e commit 6a0334b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ function VersionNavbarItemDesktop() {
</NavbarNavLink>
<ul className="dropdown__menu">
<NavbarItem
label={getLabel("Nightly")}
label="Nightly 🚧"
isDropdownItem
target="_self"
href="https://sap.github.io/ui5-webcomponents/nightly"
onClick={() => { setVersion("Nightly") }}
className={clsx({ 'menu__link--active': version === "Nightly" })}
/>
<NavbarItem
label={getLabel("v1")}
label="v1"
isDropdownItem
target="_self"
href="https://sap.github.io/ui5-webcomponents/"
Expand Down Expand Up @@ -98,15 +98,15 @@ function VersionNavbarItemMobile() {
}} />
<Collapsible lazy as="ul" className="menu__list" collapsed={collapsed}>
<NavbarItem
label={getLabel("Nightly")}
label="Nightly 🚧"
mobile
href="https://sap.github.io/ui5-webcomponents/nightly"
isDropdownItem
onClick={() => { setVersion("nightly") }}
className={clsx({ "menu__link--active": version === "nightly" })}
/>
<NavbarItem
label={getLabel("v1")}
label="v1"
mobile
href="https://sap.github.io/ui5-webcomponents"
isDropdownItem
Expand Down

0 comments on commit 6a0334b

Please sign in to comment.