You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a <select> with an <option :value="null"> and check the rendered HTML.
What is expected?
The :value="null" should be rendered as :value="" so the form works when sending it with GET option.
What is actually happening?
When submitting the form when the nullable option is selected, the value of the select element will be the text of the option since no value is rendered. I think this was caused by #3564
The text was updated successfully, but these errors were encountered:
Version
3.1.5
Reproduction link
https://codepen.io/Livijn/pen/GRmxgMb
Steps to reproduce
Create a
<select>
with an<option :value="null">
and check the rendered HTML.What is expected?
The :value="null" should be rendered as :value="" so the form works when sending it with GET option.
What is actually happening?
When submitting the form when the nullable option is selected, the value of the select element will be the text of the option since no value is rendered. I think this was caused by #3564
The text was updated successfully, but these errors were encountered: