Skip to content

Commit

Permalink
[FIXED JENKINS-26818] fixed issues with test trend display and upgrad…
Browse files Browse the repository at this point in the history
…ed to latest jenkins
  • Loading branch information
aadamovich authored and olivergondza committed May 29, 2017
1 parent ea4569d commit e4628c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.580</version>
<version>1.619</version>
</parent>

<artifactId>sectioned-view</artifactId>
Expand Down
Expand Up @@ -32,7 +32,7 @@ THE SOFTWARE.
<div style="margin: 0px 0px 5px 10px;">
<div style="border-left: 1px #bbb solid; border-top: 1px #bbb solid; border-right: 1px #bbb solid; background-color: #eee; margin: 0; padding: 3px;"><b>${job.displayName}</b> (<a href="${job.shortUrl}">view</a>)</div>
<div style="border: 1px #bbb solid;">
<j:forEach var="a" items="${job.actions}">
<j:forEach var="a" items="${job.allActions}">
<div style="float: left;">
<sv:graph action="${a}" width="250" height="100" relativeUrl="${job.shortUrl}"/>
</div>
Expand Down
Expand Up @@ -32,7 +32,7 @@ THE SOFTWARE.
<div style="float: left; margin: 0px 0px 5px 10px;">
<j:set var="jobName" value="${job.displayName}"/>
<h3><a href="${job.shortUrl}">${jobName.length() > 33 ? jobName.substring(0, 15) + "..." + jobName.substring(jobName.length() - 15) : jobName}</a></h3>
<j:forEach var="a" items="${job.actions}">
<j:forEach var="a" items="${job.allActions}">
<sv:graph action="${a}" width="250" height="100" relativeUrl="${job.shortUrl}"/>
</j:forEach>
</div>
Expand Down

0 comments on commit e4628c8

Please sign in to comment.