Describe the bug
If I specify an option in '<' and '>', it is not rendered as text.
To Reproduce
Steps to reproduce the behavior:
options: [ 'Google', '<Facebook>', 'Twitter', 'Apple', 'Oracle' ]Expected behavior
Instead of blank, it should be <Facebook>
Screenshots

System
The content you have is essentially a HTML tag so it's being parsed.
Add: :options-sanitize="true".
Force use of textContent instead of innerHTML to render options; Use it when the options might be unsafe (from user input); Does NOT apply when using 'option' slot!
Thanks! I was about to update with that answer. should have gone through the docs in more details. 🤦♂️
Most helpful comment
Thanks! I was about to update with that answer. should have gone through the docs in more details. 🤦♂️