Skip to content

Commit 9b66380

Browse files
author
OpenShift Bot
authored
Merge pull request #2187 from spadgett/consistent-binding-names
Merged by openshift-bot
2 parents a26e359 + 425e3f9 commit 9b66380

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

app/views/directives/_service-binding.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
<div ng-class="{'col-sm-5 col-md-6': $ctrl.isOverview,
44
'col-sm-8 col-md-6 col-lg-8': !$ctrl.isOverview}">
55
<h3>
6-
<div class="component-label">
7-
Secret
8-
</div>
96
{{$ctrl.binding.metadata.name}}
107
<span ng-if="$ctrl.refApiObject.kind !== 'ServiceInstance'">
118
<small ng-if="$ctrl.serviceClass">

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ <h3>
4848
{{application.metadata.name}}
4949
</span>
5050
<span ng-if="!application">
51-
{{firstBinding.spec.secretName}}
51+
{{firstBinding.metadata.name}}
5252
</span>
5353
<span ng-if="row.bindings.length > 1">
5454
and

dist/scripts/templates.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5607,9 +5607,6 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
56075607
"<div ng-class=\"{'col-sm-5 col-md-6': $ctrl.isOverview,\n" +
56085608
" 'col-sm-8 col-md-6 col-lg-8': !$ctrl.isOverview}\">\n" +
56095609
"<h3>\n" +
5610-
"<div class=\"component-label\">\n" +
5611-
"Secret\n" +
5612-
"</div>\n" +
56135610
"{{$ctrl.binding.metadata.name}}\n" +
56145611
"<span ng-if=\"$ctrl.refApiObject.kind !== 'ServiceInstance'\">\n" +
56155612
"<small ng-if=\"$ctrl.serviceClass\">\n" +
@@ -12406,7 +12403,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1240612403
"{{application.metadata.name}}\n" +
1240712404
"</span>\n" +
1240812405
"<span ng-if=\"!application\">\n" +
12409-
"{{firstBinding.spec.secretName}}\n" +
12406+
"{{firstBinding.metadata.name}}\n" +
1241012407
"</span>\n" +
1241112408
"<span ng-if=\"row.bindings.length > 1\">\n" +
1241212409
"and\n" +

0 commit comments

Comments
 (0)