Incorrect CSS Id selector for component arrays
rcstuber opened this issue · 0 comments
rcstuber commented
This will correctly produce a CSS selector as #foo-item
:
<div id="foo-item"/>
This however will unexpectedly produce a CSS selector as #fooItem
:
<div id="foo-item[]"/>
I would expect both to produce #foo-item
Thanks in advance!