Greetings!
Is there a way to update the field names in the Submissions view in Netlify?
The fieldnames appear to be the label string instead of the HTML input name attribute of the field. This is odd because the POST url uses the name attribute as a query parameter.
For example I may have a a series of radio buttons that look like this:
<input type="radio" id="red" name="color" value="red"><label for="red">Red</label>
<input type="radio" id="green" name="color" value="green"><label for="green">Green</label>
<input type="radio" id="blue" name="color" value="blue"><label for="blue">Blue</label>
And instead of displaying as “color blue” in the form submissions, it displays as “checkedred blue”. However in the POST url it is form-name=Colors&color=blue
.
Thoughts?