updates to put blob data back into data that is posted to backend on record edits

This commit is contained in:
Tim Chamberlain
2023-11-08 08:57:42 -06:00
parent 0879cb4f80
commit e5430101fa

View File

@ -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.`); 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]); delete(valuesToPost[fieldName]);
} }
else
{
valuesToPost[fieldName] = values[fieldName];
}
} }
} }