Skip to content

Commit

Permalink
fix(fe): (#269)
Browse files Browse the repository at this point in the history
- Fix for the 46aafef commit
  • Loading branch information
mamartinezmejia authored Jan 24, 2023
1 parent c0583c2 commit a3417bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const form = ref({
exampleCheckBoxGroup: ["2"],
exampleRadioGroup: ["3"],
});
const updateFormValue = (id: string, value: any) => {
const updateFormValue = (value: any, id: string) => {
form.value[id as keyof typeof form.value] = value;
console.log("form data", form.value, value);
};
Expand Down

0 comments on commit a3417bd

Please sign in to comment.