Skip to content

Commit 685f44d

Browse files
Merge pull request #2408 from rhamilto/issue-2183
Automatic merge from submit-queue. Correct binding name Fixes #2183 Requires openshift/origin-web-common#241 <img width="966" alt="screen shot 2017-10-31 at 11 45 50 am" src="https://user-images.githubusercontent.com/895728/32238899-6bba0ebc-be3f-11e7-8e6b-c9499801a3ae.PNG"> <img width="974" alt="screen shot 2017-10-31 at 12 12 59 pm" src="https://user-images.githubusercontent.com/895728/32238900-6bc5156e-be3f-11e7-9de5-65837dbf07c4.PNG"> <img width="920" alt="screen shot 2017-10-31 at 1 18 12 pm" src="https://user-images.githubusercontent.com/895728/32238907-70a1354a-be3f-11e7-8eb4-d893a4ef2212.PNG">
2 parents b066a73 + 9d89598 commit 685f44d

File tree

8 files changed

+17
-16
lines changed

8 files changed

+17
-16
lines changed

app/scripts/directives/unbindService.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
target: '<',
1616
bindings: '<',
1717
applicationsByBinding: '<',
18-
onClose: '<'
18+
onClose: '<',
19+
serviceClass: '<'
1920
},
2021
templateUrl: 'views/directives/unbind-service.html'
2122
});
@@ -87,7 +88,7 @@
8788
} else {
8889
formStepLabel = 'Services';
8990
}
90-
ctrl.displayName = serviceInstanceDisplayName(ctrl.target);
91+
ctrl.displayName = serviceInstanceDisplayName(ctrl.target, ctrl.serviceClass);
9192
ctrl.steps = [{
9293
id: 'deleteForm',
9394
label: formStepLabel,

app/views/directives/bind-service/delete-binding-result.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ <h3 class="mar-top-none">
1010
{{appForBinding.metadata.name}} <small class="text-muted">&ndash; {{ appForBinding.kind | humanizeKind : true}}</small>
1111
</div>
1212
<div ng-if="!(ctrl.unboundApps | size)">
13-
{{ctrl.selectedBinding.spec.secretName}} <small class="text-muted">&ndash; Secret</small>
13+
{{ctrl.selectedBinding.metadata.name}}
1414
</div>
1515

1616
<!-- Only show the redeploy pods message if previously bound to an app. -->

app/views/directives/bind-service/delete-binding-select-form.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ <h3 class="mar-top-none">
1414
ng-repeat="appForBinding in ctrl.appsForBinding(binding.metadata.name)">
1515
{{appForBinding.metadata.name}} <small class="text-muted">&ndash; {{ appForBinding.kind | humanizeKind : true}}</small>
1616
</div>
17-
<div ng-if="!(ctrl.appsForBinding(binding.metadata.name) | size)">
18-
{{binding.spec.secretName}}
19-
<small class="text-muted">&ndash; Secret</small>
17+
<div ng-if="!(ctrl.appsForBinding(binding.metadata.name) | size)">
18+
{{binding.metadata.name}}
2019
</div>
2120
<div>
2221
<small class="text-muted">Created <span am-time-ago="binding.metadata.creationTimestamp"></span></small>

app/views/overview/_service-instance-row.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ <h3>
186186
target="row.overlay.state.target"
187187
bindings="row.deleteableBindings"
188188
applications-by-binding="row.state.applicationsByBinding"
189-
on-close="row.closeOverlayPanel"></unbind-service>
189+
on-close="row.closeOverlayPanel"
190+
service-class="row.serviceClass"></unbind-service>
190191
</div>
191192
</overlay-panel>

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"angular-moment": "1.0.0",
4747
"angular-utf8-base64": "0.0.5",
4848
"file-saver": "1.3.3",
49-
"origin-web-common": "0.0.71",
49+
"origin-web-common": "0.0.72",
5050
"origin-web-catalog": "0.0.60"
5151
},
5252
"devDependencies": {

dist/scripts/scripts.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -12985,7 +12985,7 @@ i.nextTitle = "Close", i.wizardComplete = !0, u(), m();
1298512985
};
1298612986
i.$onInit = function() {
1298712987
var e;
12988-
e = "ServiceInstance" === i.target.kind ? s("pod_presets") ? "Applications" : "Bindings" : "Services", i.displayName = c(i.target), i.steps = [ {
12988+
e = "ServiceInstance" === i.target.kind ? s("pod_presets") ? "Applications" : "Bindings" : "Services", i.displayName = c(i.target, i.serviceClass), i.steps = [ {
1298912989
id: "deleteForm",
1299012990
label: e,
1299112991
view: "views/directives/bind-service/delete-binding-select-form.html",
@@ -13011,7 +13011,8 @@ bindings: {
1301113011
target: "<",
1301213012
bindings: "<",
1301313013
applicationsByBinding: "<",
13014-
onClose: "<"
13014+
onClose: "<",
13015+
serviceClass: "<"
1301513016
},
1301613017
templateUrl: "views/directives/unbind-service.html"
1301713018
});

dist/scripts/templates.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -5925,7 +5925,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
59255925
"{{appForBinding.metadata.name}} <small class=\"text-muted\">&ndash; {{ appForBinding.kind | humanizeKind : true}}</small>\n" +
59265926
"</div>\n" +
59275927
"<div ng-if=\"!(ctrl.unboundApps | size)\">\n" +
5928-
"{{ctrl.selectedBinding.spec.secretName}} <small class=\"text-muted\">&ndash; Secret</small>\n" +
5928+
"{{ctrl.selectedBinding.metadata.name}}\n" +
59295929
"</div>\n" +
59305930
"\n" +
59315931
"<p ng-if=\"ctrl.unboundApps | size\" class=\"mar-top-lg\">\n" +
@@ -5960,9 +5960,8 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
59605960
"<div ng-if=\"ctrl.appsForBinding(binding.metadata.name) | size\" ng-repeat=\"appForBinding in ctrl.appsForBinding(binding.metadata.name)\">\n" +
59615961
"{{appForBinding.metadata.name}} <small class=\"text-muted\">&ndash; {{ appForBinding.kind | humanizeKind : true}}</small>\n" +
59625962
"</div>\n" +
5963-
"<div ng-if=\"!(ctrl.appsForBinding(binding.metadata.name) | size)\">\n" +
5964-
"{{binding.spec.secretName}}\n" +
5965-
"<small class=\"text-muted\">&ndash; Secret</small>\n" +
5963+
"<div ng-if=\"!(ctrl.appsForBinding(binding.metadata.name) | size)\">\n" +
5964+
"{{binding.metadata.name}}\n" +
59665965
"</div>\n" +
59675966
"<div>\n" +
59685967
"<small class=\"text-muted\">Created <span am-time-ago=\"binding.metadata.creationTimestamp\"></span></small>\n" +
@@ -12689,7 +12688,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1268912688
"<bind-service target=\"row.overlay.state.target\" project=\"row.state.project\" on-close=\"row.closeOverlayPanel\"></bind-service>\n" +
1269012689
"</div>\n" +
1269112690
"<div ng-if=\"row.overlay.panelName === 'unbindService'\">\n" +
12692-
"<unbind-service target=\"row.overlay.state.target\" bindings=\"row.deleteableBindings\" applications-by-binding=\"row.state.applicationsByBinding\" on-close=\"row.closeOverlayPanel\"></unbind-service>\n" +
12691+
"<unbind-service target=\"row.overlay.state.target\" bindings=\"row.deleteableBindings\" applications-by-binding=\"row.state.applicationsByBinding\" on-close=\"row.closeOverlayPanel\" service-class=\"row.serviceClass\"></unbind-service>\n" +
1269312692
"</div>\n" +
1269412693
"</overlay-panel>"
1269512694
);

dist/scripts/vendor.js

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)