bluzky / nice-select2

A lightweight vanilla javascript library that replaces native select elements with customizable dropdowns
https://bluzky.github.io/nice-select2/
MIT License
370 stars 61 forks source link

Selected option is not shown on component build #51

Closed kaleksandar closed 1 year ago

kaleksandar commented 1 year ago

If you change, in the extractData method from this: var o = { selected: e.getAttribute("selected"), disabled: e.disabled, optgroup: "OPTGROUP" == e.tagName };

to this: var o = { selected: null != e.getAttribute("selected"), disabled: e.disabled, optgroup: "OPTGROUP" == e.tagName };

you fill not get this issue.