-
Notifications
You must be signed in to change notification settings - Fork 27.1k
Closed
Labels
effort1: hoursopen for contributionsAn issue that is suitable for a community contributor (based on its complexity/scope).An issue that is suitable for a community contributor (based on its complexity/scope).type: bug/fix
Milestone
Description
It seems like when using *ng-for="item of items" to render a list of items, if I want to use the :first-child selector it will not work as expected. It looks like right before the first item, there is a <script></script> tag inserted, so the rendering ends up as:
<ul>
<script></script>
<li></li>
<li></li>
<li></li>
</ul>Probably that is intentional, but it should be taken into consideration that this would break the expected behaviour of :first-child and a fix for it might be a good idea.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
effort1: hoursopen for contributionsAn issue that is suitable for a community contributor (based on its complexity/scope).An issue that is suitable for a community contributor (based on its complexity/scope).type: bug/fix