Good Morning Ionics!
I want to show a list only with products from a single selected vendor.
In my StateProvider I send the selected data, which should be the filter:
.state("nhaac.ofertas_restaurante", {
url: "/ofertas_restaurante/:cadastra_oferta_cod_fornecedor",
And in the view that I want to present data only of the “cadastra_oferta_cod_fornecedor” selected I put:
<div class="card" ng-repeat="item in ofertass track by $index" ng-if="cadastra_oferta_cod_fornecedor === ite.cadastra_oferta_cod_fornecedor" href="#/nhaac/ofertas_singles/{{item.cadastra_oferta_cod_oferta}}" >
But it does not list anything. It goes blank. Can someone help me?
Thank you.