Skip to content

Commit

Permalink
removed calls to Optional.get(); refs #26692
Browse files Browse the repository at this point in the history
  • Loading branch information
Keelhaul committed Jan 24, 2025
1 parent 72cbab2 commit c586b61
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -255,15 +255,15 @@
data-toggle="tooltip"
data-placement="top"
aria-label="#{msg.previousHit}"
href="#{neighbours.left != null ? (navigationHelper.currentPageTypeUrl.concat('/').concat(neighbours.left.get()).concat('/')) : '#'}">
href="#{neighbours.left != null ? (navigationHelper.currentPageTypeUrl.concat('/').concat(neighbours.left).concat('/')) : '#'}">
<i class="fa fa-arrow-circle-left" aria-hidden="true"></i>
</a>
<a class="widget-archives__next #{neighbours.right != null ? '':'-disabled'}"
title="#{msg.nextHit}"
data-toggle="tooltip"
data-placement="top"
aria-label="#{msg.nextHit}"
href="#{neighbours.right != null ? (navigationHelper.currentPageTypeUrl.concat('/').concat(neighbours.right.get()).concat('/')) : '#'}">
href="#{neighbours.right != null ? (navigationHelper.currentPageTypeUrl.concat('/').concat(neighbours.right).concat('/')) : '#'}">
<i class="fa fa-arrow-circle-right" aria-hidden="true"></i>
</a>
</span>
Expand Down

0 comments on commit c586b61

Please sign in to comment.