Skip to content

Commit

Permalink
Fix after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
asimonok committed Nov 16, 2023
1 parent 7f55982 commit 02f7d78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/FormElement/FormElement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const FormElement: React.FC<Props> = ({ element, onChange, highlightClass
transparent={!element.title}
>
<Input
value={element.value || ''}
value={FormatNumberValue(element.value)}
onChange={(event: ChangeEvent<HTMLInputElement>) => {
let value = ToNumberValue(event.target.value);

Expand Down

0 comments on commit 02f7d78

Please sign in to comment.