From f900af4871cfedb7ce77393fc83bd1219b3887f8 Mon Sep 17 00:00:00 2001 From: "matias.spinarolli" Date: Tue, 5 Dec 2023 17:01:58 -0300 Subject: [PATCH] fix(oauth): show asterisks placeholder in secret key input field EE-5664 --- .../oauth/components/oauth-settings/oauth-settings.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/portainer/oauth/components/oauth-settings/oauth-settings.html b/app/portainer/oauth/components/oauth-settings/oauth-settings.html index 636a786bc..63d8c5598 100644 --- a/app/portainer/oauth/components/oauth-settings/oauth-settings.html +++ b/app/portainer/oauth/components/oauth-settings/oauth-settings.html @@ -406,7 +406,7 @@ class="form-control" id="oauth_client_secret" ng-model="$ctrl.settings.ClientSecret" - placeholder="xxxxxxxxxxxxxxxxxxxx" + placeholder="*******" autocomplete="new-password" ng-class="['form-control', { 'limited-be': $ctrl.isLimitedToBE && $ctrl.state.provider !== 'custom' }]" ng-disabled="$ctrl.isLimitedToBE && $ctrl.state.provider !== 'custom'"