Skip to content

Commit

Permalink
Fixed #1582 - InputNumber cannot set value when format property is false
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Sep 20, 2020
1 parent d1b3570 commit 959af65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/inputnumber/InputNumber.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export class InputNumber extends Component {
return formattedValue;
}

return value;
return value.toString();
}

return '';
Expand Down

0 comments on commit 959af65

Please sign in to comment.