diff --git a/src/portal/src/app/config/auth/config-auth.component.html b/src/portal/src/app/config/auth/config-auth.component.html index 1c637df9f..0f1a9a9d4 100644 --- a/src/portal/src/app/config/auth/config-auth.component.html +++ b/src/portal/src/app/config/auth/config-auth.component.html @@ -12,12 +12,12 @@ - + {{'CONFIG.TOOLTIP.AUTH_MODE' | translate}} + {{ 'BUTTON.MORE_INFO' | translate }}
diff --git a/src/portal/src/app/config/auth/config-auth.component.scss b/src/portal/src/app/config/auth/config-auth.component.scss index 3a0ff7f5b..074671baa 100644 --- a/src/portal/src/app/config/auth/config-auth.component.scss +++ b/src/portal/src/app/config/auth/config-auth.component.scss @@ -16,5 +16,8 @@ clr-tooltip { top: -5px; } .oidc-tip { - color: rgb(10, 74, 112); + color: rgb(10, 10, 10); } +.more-info-link { + color: #101010; +} \ No newline at end of file diff --git a/src/portal/src/app/config/auth/config-auth.component.ts b/src/portal/src/app/config/auth/config-auth.component.ts index 4dc279213..9737cb26f 100644 --- a/src/portal/src/app/config/auth/config-auth.component.ts +++ b/src/portal/src/app/config/auth/config-auth.component.ts @@ -251,8 +251,5 @@ export class ConfigurationAuthComponent implements OnChanges, OnInit { console.error('Nothing changed'); } } - public allowGoOidc(event) { - return this.currentConfig.auth_mode && this.currentConfig.auth_mode.value === 'oidc_auth'; - } }