From b192c34c15286adc5ea011aa769efeb17db86c3f Mon Sep 17 00:00:00 2001 From: Thomas Rittson Date: Wed, 23 Jun 2021 12:01:01 +1000 Subject: [PATCH] Fix linting --- src/app/tabs/settings.component.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/tabs/settings.component.ts b/src/app/tabs/settings.component.ts index 29aa3790..61dcb8f2 100644 --- a/src/app/tabs/settings.component.ts +++ b/src/app/tabs/settings.component.ts @@ -130,18 +130,22 @@ export class SettingsComponent implements OnInit, OnDestroy { filePicker.type = 'file'; filePicker.value = ''; } + toggleLdapPassword() { this.showLdapPassword = !this.showLdapPassword; document.getElementById('password').focus(); } + toggleAzureKey() { this.showAzureKey = !this.showAzureKey; document.getElementById('secretKey').focus(); } + toggleOktaKey() { this.showOktaKey = !this.showOktaKey; document.getElementById('oktaToken').focus(); } + toggleOneLoginSecret() { this.showOneLoginSecret = !this.showOneLoginSecret; document.getElementById('oneLoginClientSecret').focus();