From 6228314e3c2c52a9d86f9c56bcea9cc05e9c1b8b Mon Sep 17 00:00:00 2001 From: matias-portainer <104775949+matias-portainer@users.noreply.github.com> Date: Tue, 2 Jan 2024 12:19:15 -0300 Subject: [PATCH] fix(oauth): show asterisks placeholder in secret key input field EE-5664 (#10761) --- .../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'"