Skip to content

Commit 9392873

Browse files
Merge pull request #2413 from spadgett/provision-call-failed-events
Automatic merge from submit-queue. Show ProvisionCallFailed in notification drawer Also use `humanizeKind` filter when displaying kinds in the drawer. <img width="537" alt="screen shot 2017-10-31 at 4 15 37 pm" src="https://user-images.githubusercontent.com/1167259/32246968-2afdf6aa-be57-11e7-9483-5137452904e7.png"> /kind bug /assign @jwforres cc @ncameronbritt
2 parents 020f993 + 7c67972 commit 9392873

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

app/scripts/constants.js

+1
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ angular.extend(window.OPENSHIFT_CONSTANTS, {
211211
Deprovisioning: true,
212212
ErrorCallingProvision: true,
213213
ErrorInjectingBindResult: true,
214+
ProvisionCallFailed: true,
214215
Provisioning: true,
215216
ReferencesNonexistentServiceClass: true,
216217
ReferencesNonexistentServicePlan: true,

app/views/directives/notifications/notification-body.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<div>
5656

5757
<span ng-if="notification.event.reason">
58-
{{notification.event.reason | humanize}} &mdash; <span ng-if="notification.event.involvedObject">{{notification.event.involvedObject.kind | humanize}}</span>
58+
{{notification.event.reason | humanize}} &mdash; <span ng-if="notification.event.involvedObject">{{notification.event.involvedObject.kind | humanizeKind : true}}</span>
5959
</span>
6060

6161
<span

dist/scripts/scripts.js

+1
Original file line numberDiff line numberDiff line change
@@ -740,6 +740,7 @@ LoadBalancerUpdateFailed: !0,
740740
Deprovisioning: !0,
741741
ErrorCallingProvision: !0,
742742
ErrorInjectingBindResult: !0,
743+
ProvisionCallFailed: !0,
743744
Provisioning: !0,
744745
ReferencesNonexistentServiceClass: !0,
745746
ReferencesNonexistentServicePlan: !0,

dist/scripts/templates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7913,7 +7913,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
79137913
"<div class=\"drawer-pf-notification-message word-break\" ng-attr-title=\"{{notification.event.message}}\">\n" +
79147914
"<div>\n" +
79157915
"<span ng-if=\"notification.event.reason\">\n" +
7916-
"{{notification.event.reason | humanize}} &mdash; <span ng-if=\"notification.event.involvedObject\">{{notification.event.involvedObject.kind | humanize}}</span>\n" +
7916+
"{{notification.event.reason | humanize}} &mdash; <span ng-if=\"notification.event.involvedObject\">{{notification.event.involvedObject.kind | humanizeKind : true}}</span>\n" +
79177917
"</span>\n" +
79187918
"<span ng-if=\"notification.event.involvedObject\" ng-init=\"eventObjUrl = (notification.event | navigateEventInvolvedObjectURL)\">\n" +
79197919
"<a ng-if=\"eventObjUrl\" ng-attr-title=\"Navigate to {{notification.event.involvedObject.name}}\" href=\"{{eventObjUrl}}\" ng-click=\"$ctrl.customScope.close()\">\n" +

0 commit comments

Comments
 (0)