Skip to content

Commit

Permalink
LPS-202229 as used
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Dec 5, 2023
1 parent 8529775 commit b581e49
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,15 +130,16 @@ public String getTitle() {
_getVerticalNavItemUnsafeConsumer(String key) {

return verticalNavItem -> {
String name = LanguageUtil.get(_httpServletRequest, key);

verticalNavItem.setActive(Objects.equals(getNavigation(), key));
verticalNavItem.setHref(
PortletURLBuilder.create(
getPortletURL()
).setNavigation(
key
).buildString());

String name = LanguageUtil.get(_httpServletRequest, key);

verticalNavItem.setId(name);
verticalNavItem.setLabel(name);
};
Expand Down

0 comments on commit b581e49

Please sign in to comment.