mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 00:48:25 +00:00
fix :: removed disabled button during login due to browser autocomplete issue (#5241)
This commit is contained in:
parent
3eb8bc4bec
commit
e1e5f15f8c
1 changed files with 1 additions and 1 deletions
|
|
@ -316,7 +316,7 @@ class LoginPageComponent extends React.Component {
|
|||
<ButtonSolid
|
||||
className="login-btn"
|
||||
onClick={this.authUser}
|
||||
disabled={isLoading || !this.state?.email || !this.state?.password}
|
||||
disabled={isLoading}
|
||||
data-cy="login-button"
|
||||
>
|
||||
{isLoading ? (
|
||||
|
|
|
|||
Loading…
Reference in a new issue