<li ng-repeat="appliance in appliances | limitTo:2">
<div class="icon">
<img src="images/vector/Appliances/w-{{appliance.DashboardIcon}}.svg">
</div>
<div class="label">{{ appliance.Label }}</div>
</li>
When using AngularJS, I noticed that the console is attempting to load '/images/vector/Appliances/w-%7B%7Bappliance.DashboardIcon%7D%7D.svg'. Despite this, my ng-repeat function works properly. Upon decodingURIComponent, I realized that %7B and %7D correspond to '{' and '}', respectively. How can I avoid this error in the future?