diff options
Diffstat (limited to 'src/main/resources/webapp/apps')
-rwxr-xr-x | src/main/resources/webapp/apps/frontPageApp/buildList.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main/resources/webapp/apps/frontPageApp/buildList.html b/src/main/resources/webapp/apps/frontPageApp/buildList.html index d069736..7e795e4 100755 --- a/src/main/resources/webapp/apps/frontPageApp/buildList.html +++ b/src/main/resources/webapp/apps/frontPageApp/buildList.html @@ -32,9 +32,12 @@ {{{true: 'SUCCESS', false: 'FAILURE'}[build.build.success]}} </h4> - <span ng-repeat="p in build.participants"> + <span ng-repeat="p in build.participants" ng-show="build.participants"> <dogtag-xl person="p"></dogtag-xl> </span> + <p ng-hide="build.participants"> + No participants. + </p> <a class="btn pull-right" href="#/build/{{build.build.uuid}}"><i class="icon-chevron-right"></i></a> </td> </tr> |