mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-18 13:20:43 +00:00
updates to put blob data back into data that is posted to backend on record edits
This commit is contained in:
@ -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];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user