Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
JENKINS-11013 NOT_BUILT & other build status are reported inconsistently
Matrix build tooltip reports a pending/queued build as "skipped"

Originally-Committed-As: c444b42b1478be68b7f025772ed5a109f4107bf0
  • Loading branch information
oldelvet authored and kohsuke committed Sep 23, 2011
1 parent ff8bac6 commit 560968d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -36,7 +36,7 @@ THE SOFTWARE.
</j:when>
<j:otherwise>
<a href="${p.shortUrl}/">
<img src="${imagesURL}/24x24/${b.buildStatusUrl}" tooltip="${p.tooltip} ${it.number!=b.number?'- skipped':''}" alt="${p.tooltip}" style="${it.number!=b.number?'opacity:0.5':''}" height="24" width="24"/>
<img src="${imagesURL}/24x24/${b.buildStatusUrl}" tooltip="${p.tooltip} ${it.number!=b.number?(it.isBuilding()?'- pending' : '- skipped'):''}" alt="${p.tooltip}" style="${it.number!=b.number?'opacity:0.5':''}" height="24" width="24"/>
<j:if test="${empty(o.x) and empty(o.y)}">
${p.combination.toString(o.z)}
</j:if>
Expand Down

0 comments on commit 560968d

Please sign in to comment.