I attempted to implement this code snippet:
<a href="/products/" ng-if="filterPriceFrom == 0 || filterPriceFrom > 0 && filterPriceTo < 200000" class=" tag">
{{ filterPriceFrom }} - {{ filterPriceTo }}
<span ng-click="cleanPriceSlider()" class="tag-close"></span>
</a>
Everything seems to be working fine, except for this specific part:
filterPriceFrom == 0
Could someone please clarify the reason behind this issue?