diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-03 17:10:30 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-03 17:10:30 +0100 |
commit | 5c8c3467906d996c04210cc8350edbd027ccc32a (patch) | |
tree | b0d34eb87cd589b27b422059eff599b3b80ba24e /src/main/webapp/apps/jenkinsApp/job.html | |
parent | 35ba1a6f765f72a1d91a5456c7556e6274f8c3a9 (diff) | |
download | esper-testing-5c8c3467906d996c04210cc8350edbd027ccc32a.tar.gz esper-testing-5c8c3467906d996c04210cc8350edbd027ccc32a.tar.bz2 esper-testing-5c8c3467906d996c04210cc8350edbd027ccc32a.tar.xz esper-testing-5c8c3467906d996c04210cc8350edbd027ccc32a.zip |
o Skipping builds where the job is a <mavenModule>.
o Using the build's timestamp instead of createdDate in the UI.
Diffstat (limited to 'src/main/webapp/apps/jenkinsApp/job.html')
-rwxr-xr-x[-rw-r--r--] | src/main/webapp/apps/jenkinsApp/job.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/webapp/apps/jenkinsApp/job.html b/src/main/webapp/apps/jenkinsApp/job.html index 5113d2e..6ee7af0 100644..100755 --- a/src/main/webapp/apps/jenkinsApp/job.html +++ b/src/main/webapp/apps/jenkinsApp/job.html @@ -36,7 +36,7 @@ </thead> <tbody> <tr ng-repeat="build in builds.rows" class="{{{true: 'success', false: 'error'}[build.success]}}"> - <td>{{build.createdDate | date:'medium'}}</td> + <td>{{build.timestamp | date:'medium'}}</td> <td>{{build.result}}</td> <td><a class="btn" ng-click="showBuild(build.uuid)"><i class="icon-chevron-right"></i></a></td> </tr> |