Skip to content

Commit fcbaf7a

Browse files
committed
Show build status message when it exists
Implements https://trello.com/c/Of6LXNUi
1 parent 4fd08fe commit fcbaf7a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

app/views/browse/_build-details.html

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ <h3>Status</h3>
77
<dd>
88
<status-icon status="build.status.phase"></status-icon>
99
{{build.status.phase}}
10+
<span ng-if="build.status.message">&ndash; {{build.status.message}}</span>
1011
<span ng-if="build | jenkinsLogURL">
1112
<span class="text-muted">&ndash;</span>
1213
<a ng-href="{{build | jenkinsLogURL}}" target="_blank">View Log</a>

dist/scripts/templates.js

+1
Original file line numberDiff line numberDiff line change
@@ -1248,6 +1248,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
12481248
"<dd>\n" +
12491249
"<status-icon status=\"build.status.phase\"></status-icon>\n" +
12501250
"{{build.status.phase}}\n" +
1251+
"<span ng-if=\"build.status.message\">&ndash; {{build.status.message}}</span>\n" +
12511252
"<span ng-if=\"build | jenkinsLogURL\">\n" +
12521253
"<span class=\"text-muted\">&ndash;</span>\n" +
12531254
"<a ng-href=\"{{build | jenkinsLogURL}}\" target=\"_blank\">View Log</a>\n" +

0 commit comments

Comments
 (0)