Skip to content

Commit

Permalink
chore: pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
davidma415 committed Apr 10, 2024
1 parent a98f68d commit 97614ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,8 @@ The login element **must** reside at the `{window.location.origin}/login` path i
| `idpLoginCallbackUrl` | URL | `''` | Set the URL to return to in order to complete the OIDC flow. In most cases, this should be set to `${window.location.origin}/login` |
| `idpLoginReturnTo` | URL | `''` | Set the URL to return to upon successful IdP login. In most cases, this should be set to `window.location.origin` |
| `idpFullScreenLoader` | Boolean | `true` | Show the full screen loading skeleton when IdP login is processing |
| `loginSsoButtonText` | String | `Continue with SSO` | Set the text for the SSO login button. |
| `loginButtonText` | String | `Log in` | Set the text for the basic authentication login button. |

> **Note**: When utilizing the props as a native web component, you may need to use dot syntax, as shown here
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/LoginForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ const loginBtnText = computed((): string => {
return ''
}
return loginButtonText.value ? loginButtonText.value : messages.login.loginText
return loginButtonText.value
})
// Allow forcing the login button to be enabled if the form was autofilled
Expand Down

0 comments on commit 97614ae

Please sign in to comment.