AUR0163
Error Message
Description
Example Trigger
<!-- ❌ Invalid LHS -->
<div repeat.for="a + b of items">${a}</div>Solution
<!-- ✅ -->
<div repeat.for="item of items">${item}</div>Troubleshooting
Last updated
Was this helpful?