From 4bd1387b834fca99b819d12ae6d3d4d9074ed1b9 Mon Sep 17 00:00:00 2001
From: Luc <59910153+luc-bw@users.noreply.github.com>
Date: Mon, 21 Jun 2021 19:18:14 -0700
Subject: [PATCH] requested updates
---
src/app/accounts/apiKey.component.html | 2 +-
src/app/accounts/apiKey.component.ts | 2 +-
src/app/tabs/settings.component.html | 8 ++++----
src/app/tabs/settings.component.ts | 8 ++++----
4 files changed, 10 insertions(+), 10 deletions(-)
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();
}
}