We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eaa138 commit 066f524Copy full SHA for 066f524
src/main/resources/lib/hudson/test/table.jelly
@@ -83,7 +83,12 @@ THE SOFTWARE.
83
</j:forEach>
84
</td>
85
<td class="jenkins-mobile-hide">
86
- <a href="${rootURL}/${f.failedSinceRun.url}">${f.age}</a>
+ <j:choose>
87
+ <j:when test="${f.age == 0 or f.skipped}">0</j:when>
88
+ <j:otherwise>
89
+ <a href="${rootURL}/${f.failedSinceRun.url}">${f.age}</a>
90
+ </j:otherwise>
91
+ </j:choose>
92
93
<td class="no-wrap jenkins-mobile-hide" data="${f.duration}">
94
${f.durationString}
0 commit comments