AUR0159
Error Message
Description
Example Trigger
<!-- ❌ Missing converter name -->
<div textcontent.bind="message |"></div>
<div textcontent.bind="count | :arg"></div>Solution
<!-- ✅ -->
<div textcontent.bind="message | upper"></div>
<div textcontent.bind="count | numberFormat:'en-US'"></div>Troubleshooting
Last updated
Was this helpful?