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
If --bad-match2 ends with anything other than digits, the collision bug does not occur. Ex: --bad-match22 found by var(--bad-match) --bad-matcha (correctly) NOT found by var(--bad-match) --bad-match-2 (correctly) NOT found by var(--bad-match)
Reduced example:
https://codepen.io/propjockey/pen/poLppJX/2c1726852bc96c8bf7703c95486a97c5?editors=1010
The each-template prop uses a var that is referencing
--bad-match
which doesn't exist, but is substituted with the value on var called --bad-match2.If
--bad-match2
ends with anything other than digits, the collision bug does not occur. Ex:--bad-match22
found byvar(--bad-match)
--bad-matcha
(correctly) NOT found byvar(--bad-match)
--bad-match-2
(correctly) NOT found byvar(--bad-match)
probably related to #155
Ty! 💜
The text was updated successfully, but these errors were encountered: