Skip to content

Commit

Permalink
Correct overriding title for breadcrumb-config-outline
Browse files Browse the repository at this point in the history
  • Loading branch information
timja committed Jan 9, 2022
1 parent 45333a0 commit 89f1aba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ THE SOFTWARE.
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<l:layout permissions="${app.MANAGE_AND_SYSTEM_READ}" title="${%Configure System}">
<st:include page="sidepanel.jelly" />
<f:breadcrumb-config-outline />
<f:breadcrumb-config-outline title="${%Configure System}" />
<l:main-panel>
<div class="jenkins-app-bar">
<div class="jenkins-app-bar__content">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ THE SOFTWARE.
<st:documentation>
Adds one more in-page breadcrumb that jumps to sections in the page.
Put this tag right before &lt;l:main-panel>
<st:attribute name="title">
Optional title for this breadcrumb
</st:attribute>
</st:documentation>

<st:adjunct includes="lib.form.breadcrumb-config-outline.init"/>
<l:breadcrumb title="${%Configure System}" id="inpage-nav" />
</j:jelly>
<l:breadcrumb title="${attrs.title?:'%configuration'}" id="inpage-nav" />
</j:jelly>

0 comments on commit 89f1aba

Please sign in to comment.