Skip to content

Commit

Permalink
Merge pull request #90 from supertokens/fix/auto-fill-signin
Browse files Browse the repository at this point in the history
fix: Fix an issue where autofilled entries would not work when signing in
  • Loading branch information
rishabhpoddar authored May 5, 2023
2 parents 4f08b4d + 77e9b0a commit ccf94b5
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.6.4] - 2023-05-05

- Fixes an issue where the sign in form would not work with auto filled entries

## [0.6.3] - 2023-04-115

- Fixes an issues where search was enabled even for older versions.
Expand Down
2 changes: 1 addition & 1 deletion build/static/js/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/js/bundle.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dashboard",
"version": "0.6.3",
"version": "0.6.4",
"private": true,
"dependencies": {
"@babel/core": "^7.16.0",
Expand Down
1 change: 1 addition & 0 deletions src/ui/components/inputField/InputField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ const InputField: React.FC<InputFieldPropTypes> = (props) => {
<input
type={props.type === "password" && showPassword ? "text" : props.type}
name={props.name}
onChange={onChange}
onKeyUp={onChange}
defaultValue={props.value}
onFocus={() => setIsFocused(true)}
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
* under the License.
*/

export const package_version = "0.6.3";
export const package_version = "0.6.4";

0 comments on commit ccf94b5

Please sign in to comment.