Skip to content

Commit

Permalink
Merge pull request #1710 from zbynek/sortable
Browse files Browse the repository at this point in the history
Correct sorting by issues column when some entries are missing
  • Loading branch information
uhafner committed Mar 18, 2024
2 parents 0caa986 + 32564e5 commit dc92a40
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@
</j:set>
<td class="healthReport issues-total" data-html-tooltip="${total.isPresent() ? tooltip : null}"
data-tooltip-interactive="true"
onmouseover="this.className='healthReport hover';return true;"
onmouseout="this.className='healthReport';return true;">
data="${total.orElse(-1)}">
<j:choose>
<j:when test="${total.isPresent() and size(url) > 0}">
<a href="${rootURL}/${job.url}/${url}">${total.asInt}</a>
Expand Down

0 comments on commit dc92a40

Please sign in to comment.