diff --git a/src/qqq/components/forms/EntityForm.tsx b/src/qqq/components/forms/EntityForm.tsx index cf98258..e539c37 100644 --- a/src/qqq/components/forms/EntityForm.tsx +++ b/src/qqq/components/forms/EntityForm.tsx @@ -471,6 +471,10 @@ function EntityForm(props: Props): JSX.Element console.log(`${fieldName} value was a string, so, we're deleting it from the values array, to not submit it to the backend, to not change it.`); delete(valuesToPost[fieldName]); } + else + { + valuesToPost[fieldName] = values[fieldName]; + } } }