diff --git a/src/views/Login.vue b/src/views/Login.vue index 7b9fe48..4bfb353 100644 --- a/src/views/Login.vue +++ b/src/views/Login.vue @@ -12,9 +12,10 @@
- + {{ $t("Next") }} - + +
@@ -106,6 +107,7 @@ export default defineComponent({ isConfirmingForActiveSession: false, loader: null as any, loginOption: {} as any, + isCheckingOms: false, isLoggingIn: false }; }, @@ -212,6 +214,8 @@ export default defineComponent({ return } + this.isCheckingOms = true + const instanceURL = this.instanceUrl.trim().toLowerCase(); if (!this.baseURL) this.authStore.setOMS(this.alias[instanceURL] ? this.alias[instanceURL] : instanceURL); @@ -226,6 +230,7 @@ export default defineComponent({ } else { this.toggleOmsInput() } + this.isCheckingOms = false }, async fetchLoginOptions() { this.loginOption = {}