What is the feature?
Properly show validation errors in console or UI when encountering validation errors on records, even from the summary view.
What problem does this solve for you?
We were running into a nondescript error when updating records.
Turns out we added a field as non-nullable, when it should have been nullable. Quite an easy fix.
I turned the search for the actual error into an absolute pain:
- Look into the client JS for instances of the error message
- Add breakpoints at the lines where the error is caught
- On debugger pause, dig into the error:
Once I had way overengineered this process, I found out we were editing from the summary view which didn’t display the bogus field.
So… yeah.
Who else would be using this feature?
Anyone using the edits on the summary view.