diff --git a/backend/locales/en.json b/backend/locales/en.json index 9b6cc5851..0f7572e6d 100644 --- a/backend/locales/en.json +++ b/backend/locales/en.json @@ -1463,7 +1463,6 @@ "admin.webhooks.urlInvalidChars": "The URL contains invalid characters.", "admin.webhooks.urlMissing": "The URL is missing or is not valid.", "auth.actions.login": "Log In", - "auth.actions.loginWith": "Continue with {provider}", "auth.actions.register": "Register", "auth.changePwd.currentPassword": "Current Password", "auth.changePwd.instructions": "You must choose a new password:", diff --git a/frontend/src/components/AuthLoginPanel.vue b/frontend/src/components/AuthLoginPanel.vue index 69ed8fd66..c9237f6dc 100644 --- a/frontend/src/components/AuthLoginPanel.vue +++ b/frontend/src/components/AuthLoginPanel.vue @@ -52,7 +52,7 @@ :text-color=" str.id === state.selectedStrategyId || dark.isActive ? `white` : `blue-grey-9` " - @click="state.selectedStrategyId = str.id" /> + @click="selectFormStrategy(str.id)" /> @@ -136,7 +136,7 @@ flat color="primary" :text-color="acrylicBtnTextColor" - :label="t(`auth.actions.loginWith`, { provider: str.activeStrategy.displayName })" + :label="str.activeStrategy.displayName" no-caps :icon="`img:` + str.activeStrategy.strategy.icon" :href="authorizeUrl(str)" @@ -541,7 +541,7 @@