When editing a record and changing the value of a boolean, FA is sending the original value of the boolean when saving the record.
Specifically, I select “Edit” and select the new boolean (radio button control) value and hit “Save” and the the browser’s Network inspector (as well as the admin console API output) show the old boolean value inside the request.body.data.attributes
structure.
Any idea what’s going on? The field is defined like this:
isEnabled: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false
}
and we are on version 7.0.0 of forest-express-sequelize. Thanks!