Checkbox input to Database

I am trying to capture the input from a check box as Pass or Fail to record in my database. I have referenced the property checkedIcon but I only get the default property text in my database. Where have I gone wrong?


props.selected
is the actual value of the checkbox and is a boolean.

2 Likes

That's perfect, thank you. I can work with that