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
I use bulma-tagsinput in a form with name attribute "tags". See this (written in pug.js):
form(id="group-form").field
label.label Name of group
.control
input.input(type="text", name="name", placeholder="Discrete Maths"required).field
label.label(for="tags") Tags
.control
input.input(type="tags", name="tags", id="tags", placeholder="Add tags", value="midterm")
(...)
When I would submit the form, FormData shows two objects under the same key: "tags". One of them has the value of a blank string, the other's value has the data from tagsinput.
Can you tell me what could be behind this?
I already solved it with deleting the blank object, yet I want to know if I was wrong and I could have solved the duplication problem.
The text was updated successfully, but these errors were encountered:
Thanks to report this bug. You did nothing wrong it's just the name attribute that was duplicated on the input generated by TagsInput. Fix is coming very soon.
I use bulma-tagsinput in a form with name attribute "tags". See this (written in pug.js):
When I would submit the form, FormData shows two objects under the same key: "tags". One of them has the value of a blank string, the other's value has the data from tagsinput.
Can you tell me what could be behind this?
I already solved it with deleting the blank object, yet I want to know if I was wrong and I could have solved the duplication problem.
The text was updated successfully, but these errors were encountered: