diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-18 16:40:40 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-18 16:40:40 +0100 |
commit | 34546b9c5b5a9be2180e8b4801b72a48feb94d1d (patch) | |
tree | b0cc7cb6fadaf640f6bb5dd7b062192100c6a944 /src/main/resources/webapp/apps/jenkinsApp | |
parent | 2baff5fc9a0564c5e150cf10a1cfd2edd5b3d868 (diff) | |
download | esper-testing-34546b9c5b5a9be2180e8b4801b72a48feb94d1d.tar.gz esper-testing-34546b9c5b5a9be2180e8b4801b72a48feb94d1d.tar.bz2 esper-testing-34546b9c5b5a9be2180e8b4801b72a48feb94d1d.tar.xz esper-testing-34546b9c5b5a9be2180e8b4801b72a48feb94d1d.zip |
o timestamp => createdDate in the JSON to be consistent.
o Better builds list.
o Renaming person-avatar to avatar-xl.
Diffstat (limited to 'src/main/resources/webapp/apps/jenkinsApp')
-rwxr-xr-x[-rw-r--r--] | src/main/resources/webapp/apps/jenkinsApp/build.html | 2 | ||||
-rwxr-xr-x | src/main/resources/webapp/apps/jenkinsApp/job.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/resources/webapp/apps/jenkinsApp/build.html b/src/main/resources/webapp/apps/jenkinsApp/build.html index 7239c90..db07f44 100644..100755 --- a/src/main/resources/webapp/apps/jenkinsApp/build.html +++ b/src/main/resources/webapp/apps/jenkinsApp/build.html @@ -18,7 +18,7 @@ <tbody> <tr> <th>Timestamp</th> - <td>{{details.build.timestamp | date:'medium'}}</td> + <td>{{details.build.createdDate | date:'medium'}}</td> </tr> <tr> <th>Number</th> diff --git a/src/main/resources/webapp/apps/jenkinsApp/job.html b/src/main/resources/webapp/apps/jenkinsApp/job.html index 8942ab7..e0c1a10 100755 --- a/src/main/resources/webapp/apps/jenkinsApp/job.html +++ b/src/main/resources/webapp/apps/jenkinsApp/job.html @@ -38,7 +38,7 @@ </thead> <tbody> <tr ng-repeat="build in builds.rows" class="{{{true: 'success', false: 'error'}[build.success]}}"> - <td>{{build.timestamp | date:'medium'}}</td> + <td>{{build.createdDate | 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> |