Skip to content

Commit

Permalink
Fix decimal calcExpression to generate valueDecimal
Browse files Browse the repository at this point in the history
  • Loading branch information
fongsean committed May 13, 2024
1 parent 360726e commit bdf16ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function DecimalItem(props: DecimalItemProps) {
);
onQrItemChange({
...createEmptyQrItem(qItem),
answer: [{ valueInteger: newValueDecimal }]
answer: [{ valueDecimal: newValueDecimal }]
});
},
onChangeByCalcExpressionNull: () => {
Expand Down

0 comments on commit bdf16ee

Please sign in to comment.