Skip to content

Commit

Permalink
Merge pull request #109 from Waschndolos/bugfix/rendering-long-jobnames
Browse files Browse the repository at this point in the history
Implementing a wordwrap so that longer job names will be rendered correct
  • Loading branch information
jonesbusy authored Mar 29, 2024
2 parents 38be1a5 + bb3e6da commit 136ff95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<j:if test="${!it.builds.isEmpty()}">
<j:forEach var="w" items="${it.builds}">
<tr>
<td class="pane"><a tooltip="${w.name}" href="${w.url}">${w.name}</a></td>
<td class="pane" style="word-break:break-all;"><a tooltip="${w.name}" href="${w.url}">${w.name}</a></td>
<td class="pane" tooltip="${w.timeToGo}">${w.date}</td>
</tr>
</j:forEach>
Expand Down

0 comments on commit 136ff95

Please sign in to comment.