Skip to content

Commit

Permalink
fix(form): fix value bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ShanaMaid committed Jan 22, 2019
1 parent 7f6a2ab commit 2cffbda
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.8.6](https://github.com/Yoshino-UI/Yoshino/compare/v0.8.5...v0.8.6) (2019-01-21)



## [0.8.5](https://github.com/Yoshino-UI/Yoshino/compare/v0.8.4...v0.8.5) (2019-01-21)


Expand Down
2 changes: 1 addition & 1 deletion components/Form/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class Form extends Component<IFormProps, IFormState> {
}
});
if (flag) {
return this.state.value;
return this.value;
}
return flag;
}
Expand Down

0 comments on commit 2cffbda

Please sign in to comment.