I tried to test the app by setting some values in the frontend but ran into some background save issues traced back to validate being set to true.
- It treated every field as required, even though the yaml sets most to not required.
- Dropdown-type field failed no matter what value I put in. I switched the field from type: select to type: text instead, and it works fine now.
- I tried saving a new record, since the app uses update I thought it would insert if it didn't exist. Nothing was saved but also no error message was given. I updated to "create" and it worked.
I tried to test the app by setting some values in the frontend but ran into some background save issues traced back to validate being set to true.