Skip to content

Commit b99829d

Browse files
committed
Bug 1509142 - Should not display the 'Reveal Secret' link when secrets without 'data' field
1 parent 424cf01 commit b99829d

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

app/views/browse/secret.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ <h1 class="contains-actions">
6161
<div class="resource-details">
6262
<h2 class="mar-top-none">
6363
{{secret.type}}
64-
<small class="mar-left-sm"><a href="" ng-click="view.showSecret = !view.showSecret">{{view.showSecret ? "Hide" : "Reveal"}} Secret</a></small>
64+
<small class="mar-left-sm"><a href="" ng-if="secret.data" ng-click="view.showSecret = !view.showSecret">{{view.showSecret ? "Hide" : "Reveal"}} Secret</a></small>
6565
</h2>
6666
<dl class="secret-data left">
6767
<div ng-repeat="(secretDataName, secretData) in decodedSecretData" class="image-source-item">
@@ -90,6 +90,9 @@ <h2 class="mar-top-none">
9090
</div>
9191
</div>
9292
</dl>
93+
<p ng-if="!secret.data" class="mar-bottom-xl">
94+
There are no data in this secret.
95+
</p>
9396
<annotations annotations="secret.metadata.annotations"></annotations>
9497
</div>
9598
</div><!-- /col-* -->

dist/scripts/templates.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -3611,7 +3611,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
36113611
"<div class=\"resource-details\">\n" +
36123612
"<h2 class=\"mar-top-none\">\n" +
36133613
"{{secret.type}}\n" +
3614-
"<small class=\"mar-left-sm\"><a href=\"\" ng-click=\"view.showSecret = !view.showSecret\">{{view.showSecret ? \"Hide\" : \"Reveal\"}} Secret</a></small>\n" +
3614+
"<small class=\"mar-left-sm\"><a href=\"\" ng-if=\"secret.data\" ng-click=\"view.showSecret = !view.showSecret\">{{view.showSecret ? \"Hide\" : \"Reveal\"}} Secret</a></small>\n" +
36153615
"</h2>\n" +
36163616
"<dl class=\"secret-data left\">\n" +
36173617
"<div ng-repeat=\"(secretDataName, secretData) in decodedSecretData\" class=\"image-source-item\">\n" +
@@ -3636,6 +3636,9 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
36363636
"</div>\n" +
36373637
"</div>\n" +
36383638
"</dl>\n" +
3639+
"<p ng-if=\"!secret.data\" class=\"mar-bottom-xl\">\n" +
3640+
"There are no data in this secret.\n" +
3641+
"</p>\n" +
36393642
"<annotations annotations=\"secret.metadata.annotations\"></annotations>\n" +
36403643
"</div>\n" +
36413644
"</div>\n" +

0 commit comments

Comments
 (0)