Skip to content

Commit 38c7fd5

Browse files
committed
fixing aux image push credential fields to hide when credentials not required for push is on
1 parent 188d229 commit 38c7fd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webui/src/js/views/image-design-view.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,14 +388,14 @@ <h6 slot="header" class="wkt-subheading"><oj-bind-text value="[[labelMapper('aux
388388
help.instruction="[[labelMapper('aux-image-registry-push-requires-authentication-help')]]">
389389
</oj-switch>
390390
<div>
391-
<oj-bind-if test="[[auxImageRegistryPushRequiresAuthentication]]">
391+
<oj-bind-if test="[[auxImageRegistryPushRequiresAuthentication() === true]]">
392392
<oj-input-password label-hint="[[labelMapper('aux-image-registry-push-username-label')]]"
393393
mask-icon="visible"
394394
value="{{project.image.auxImageRegistryPushUser.observable}}"
395395
help.instruction="[[labelMapper('aux-image-registry-push-username-help')]]">
396396
</oj-input-password>
397397
</oj-bind-if>
398-
<oj-bind-if test="[[auxImageRegistryPushRequiresAuthentication]]">
398+
<oj-bind-if test="[[auxImageRegistryPushRequiresAuthentication() === true]]">
399399
<oj-input-password label-hint="[[labelMapper('aux-image-registry-push-password-label')]]"
400400
mask-icon="visible"
401401
value="{{project.image.auxImageRegistryPushPassword.observable}}"

0 commit comments

Comments
 (0)