Skip to content

Commit 88343c9

Browse files
committed
Fix binding ready logic
The binding ready logic was flipped in the service-binding component, so the View Secret link was showing up at the wrong time.
1 parent c1a0186 commit 88343c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/views/directives/_service-binding.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ <h3>
4646
project-name="{{$ctrl.binding.metadata.namespace}}"
4747
stay-on-current-page="true">
4848
</delete-link>
49-
<a ng-if="('secrets' | canI : 'get') && !($ctrl.binding | isBindingFailed) && !(binding | isBindingReady)"
49+
<a ng-if="('secrets' | canI : 'get') && ($ctrl.binding | isBindingReady)"
5050
ng-href="{{$ctrl.binding.spec.secretName | navigateResourceURL : 'Secret' : $ctrl.namespace}}">
5151
View Secret
5252
</a>

dist/scripts/templates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5636,7 +5636,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
56365636
"<div class=\"service-binding-actions\" ng-if=\"!ctrl.binding.metadata.deletionTimestamp\">\n" +
56375637
"<delete-link ng-if=\"({resource: 'serviceinstancecredentials', group: 'servicecatalog.k8s.io'} | canI : 'delete')\" kind=\"ServiceInstanceCredential\" group=\"servicecatalog.k8s.io\" type-display-name=\"binding\" resource-name=\"{{$ctrl.binding.metadata.name}}\" project-name=\"{{$ctrl.binding.metadata.namespace}}\" stay-on-current-page=\"true\">\n" +
56385638
"</delete-link>\n" +
5639-
"<a ng-if=\"('secrets' | canI : 'get') && !($ctrl.binding | isBindingFailed) && !(binding | isBindingReady)\" ng-href=\"{{$ctrl.binding.spec.secretName | navigateResourceURL : 'Secret' : $ctrl.namespace}}\">\n" +
5639+
"<a ng-if=\"('secrets' | canI : 'get') && ($ctrl.binding | isBindingReady)\" ng-href=\"{{$ctrl.binding.spec.secretName | navigateResourceURL : 'Secret' : $ctrl.namespace}}\">\n" +
56405640
"View Secret\n" +
56415641
"</a>\n" +
56425642
"</div>\n" +

0 commit comments

Comments
 (0)