diff --git a/src/app/accounts/apiKey.component.html b/src/app/accounts/apiKey.component.html
index 710bacb6..2d817a59 100644
--- a/src/app/accounts/apiKey.component.html
+++ b/src/app/accounts/apiKey.component.html
@@ -19,7 +19,7 @@
-
diff --git a/src/app/accounts/apiKey.component.ts b/src/app/accounts/apiKey.component.ts
index 0df06b09..b3056dd8 100644
--- a/src/app/accounts/apiKey.component.ts
+++ b/src/app/accounts/apiKey.component.ts
@@ -80,6 +80,6 @@ export class ApiKeyComponent {
}
toggleSecret() {
this.showSecret = !this.showSecret;
- document.getElementById('clientSecret').focus();
+ document.getElementById('client_secret').focus();
}
}
diff --git a/src/app/tabs/settings.component.html b/src/app/tabs/settings.component.html
index bd67de09..f3f4f5fd 100644
--- a/src/app/tabs/settings.component.html
+++ b/src/app/tabs/settings.component.html
@@ -125,7 +125,7 @@
-
+
@@ -150,7 +150,7 @@
-
+
@@ -169,7 +169,7 @@
-
+
@@ -188,7 +188,7 @@
-
+
diff --git a/src/app/tabs/settings.component.ts b/src/app/tabs/settings.component.ts
index b58ac999..5d054f6e 100644
--- a/src/app/tabs/settings.component.ts
+++ b/src/app/tabs/settings.component.ts
@@ -132,18 +132,18 @@ export class SettingsComponent implements OnInit, OnDestroy {
}
toggleLdapPassword() {
this.showLdapPassword = !this.showLdapPassword;
- document.getElementById('masterPassword').focus();
+ document.getElementById('password').focus();
}
toggleAzureKey() {
this.showAzureKey = !this.showAzureKey;
- document.getElementById('masterPassword').focus();
+ document.getElementById('secretKey').focus();
}
toggleOktaKey() {
this.showOktaKey = !this.showOktaKey;
- document.getElementById('masterPassword').focus();
+ document.getElementById('oktaToken').focus();
}
toggleOneLoginSecret() {
this.showOneLoginSecret = !this.showOneLoginSecret;
- document.getElementById('masterPassword').focus();
+ document.getElementById('oneLoginClientSecret').focus();
}
}