Skip to content

Commit 8a529e9

Browse files
committed
Bug 1496687: Consistent binding names
Use the binding name instead of the secret name in the service instances table to be consistent with the overview and service instance details page. Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1496687
1 parent bcb969b commit 8a529e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/views/service-instances.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ <h1>
6363
{{application.metadata.name}}
6464
</span>
6565
<span ng-if="!application">
66-
{{firstBinding.spec.secretName}}
66+
{{firstBinding.metadata.name}}
6767
</span>
6868
<ng-pluralize count="bindingsByInstanceRef[serviceInstance.metadata.name].length"
6969
when="{'0':'', '1':'', '2':'and {} other', 'other':'and {} others'}"

dist/scripts/templates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13173,7 +13173,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1317313173
"{{application.metadata.name}}\n" +
1317413174
"</span>\n" +
1317513175
"<span ng-if=\"!application\">\n" +
13176-
"{{firstBinding.spec.secretName}}\n" +
13176+
"{{firstBinding.metadata.name}}\n" +
1317713177
"</span>\n" +
1317813178
"<ng-pluralize count=\"bindingsByInstanceRef[serviceInstance.metadata.name].length\" when=\"{'0':'', '1':'', '2':'and {} other', 'other':'and {} others'}\" offset=\"1\">\n" +
1317913179
"</ng-pluralize>\n" +

0 commit comments

Comments
 (0)