Skip to content

Commit

Permalink
Fix incorrect display of the pop-up arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
gkottr authored Sep 6, 2024
1 parent b4227cd commit 27abcf3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/resources/jenkins/branch/ItemColumn/column.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ THE SOFTWARE.
<j:choose>
<j:when test="${it.isOrphaned(job)}">
<s>
<a href="${jobBaseUrl}${job.shortUrl}" class='model-link inside jenkins-table_link' title="${it.getTitle(job)}">
<a href="${jobBaseUrl}${job.shortUrl}" class='model-link inside jenkins-table_link' style='margin: 0 !important;' title="${it.getTitle(job)}">
<l:breakable value="${h.getRelativeDisplayNameFrom(job, itemGroup)}"/>
</a>
</s>
</j:when>
<j:when test="${it.isPrimary(job)}">
<strong>
<a href="${jobBaseUrl}${job.shortUrl}" class='model-link inside jenkins-table_link' title="${it.getTitle(job)}">
<a href="${jobBaseUrl}${job.shortUrl}" class='model-link inside jenkins-table_link' style='margin: 0 !important;' title="${it.getTitle(job)}">
<l:breakable value="${h.getRelativeDisplayNameFrom(job, itemGroup)}"/>
</a>
</strong>
</j:when>
<j:otherwise>
<a href="${jobBaseUrl}${job.shortUrl}" class='model-link inside jenkins-table_link' title="${it.getTitle(job)}">
<a href="${jobBaseUrl}${job.shortUrl}" class='model-link inside jenkins-table_link' style='margin: 0 !important;' title="${it.getTitle(job)}">
<l:breakable value="${h.getRelativeDisplayNameFrom(job, itemGroup)}"/>
</a>
</j:otherwise>
Expand Down

0 comments on commit 27abcf3

Please sign in to comment.