Skip to content

Commit d5fa2bb

Browse files
author
OpenShift Bot
authoredNov 23, 2016
Merge pull request #923 from jwforres/hide-start-build
Merged by openshift-bot
2 parents 46dd413 + 097b1da commit d5fa2bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

Diff for: ‎app/views/browse/build-config.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ <h1>
7272
<div ng-if="!unfilteredBuilds" class="gutter-bottom">Loading...</div>
7373

7474
<!-- Show an empty state message when there are no builds. -->
75-
<div ng-if="unfilteredBuilds && (unfilteredBuilds | hashSize) === 0" class="empty-state-message text-center">
75+
<div ng-if="buildConfig && unfilteredBuilds && (unfilteredBuilds | hashSize) === 0" class="empty-state-message text-center">
7676
<h2>No builds.</h2>
7777

7878
<p>

Diff for: ‎dist/scripts/templates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1740,7 +1740,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
17401740
"\n" +
17411741
"<div ng-if=\"!unfilteredBuilds\" class=\"gutter-bottom\">Loading...</div>\n" +
17421742
"\n" +
1743-
"<div ng-if=\"unfilteredBuilds && (unfilteredBuilds | hashSize) === 0\" class=\"empty-state-message text-center\">\n" +
1743+
"<div ng-if=\"buildConfig && unfilteredBuilds && (unfilteredBuilds | hashSize) === 0\" class=\"empty-state-message text-center\">\n" +
17441744
"<h2>No builds.</h2>\n" +
17451745
"<p>\n" +
17461746
"<span ng-if=\"!('buildconfigs/instantiate' | canI : 'create')\">\n" +

0 commit comments

Comments
 (0)
Please sign in to comment.