Skip to content

Commit

Permalink
Fixing JENKINS-22557
Browse files Browse the repository at this point in the history
  • Loading branch information
mpailloncy committed Apr 14, 2014
1 parent f46db87 commit 8b0424d
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -6,8 +6,7 @@
<j:forEach var="causeEntry" varStatus="status" items="${entries}">
<j:set var="causeIconUrl" value="${causeEntry.key}" />
<j:set var="causeShortDesc" value="${causeEntry.value}" />
<img width="16" height="16" src="${rootURL}${causeIconUrl}"/>
<span>&#160;${causeShortDesc}</span>
<img width="16" height="16" src="${rootURL}${causeIconUrl}" title="${causeEntry.value}" />
<j:if test="${!status.last}">
<br/>
</j:if>
Expand Down

1 comment on commit 8b0424d

@batmat
Copy link
Member

@batmat batmat commented on 8b0424d Mar 17, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mpapo Did you remove the <span> with the text on purpose? Of was it unintended and you only wanted to add a title as requested on JENKINS-22557?

See https://issues.jenkins-ci.org/browse/JENKINS-26186?jwupdated=25441&focusedCommentId=223838#comment-223838

Thanks

Please sign in to comment.