Commit 03a726ea545fc1e9d9f9c876c41ffa4d4532542b
1 parent
3e9c0c2a3f
Exists in
master
Usada detalle larga en filtro.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/app/components/amb-imagenes/amb-imagenes.component.ts
... | ... | @@ -50,7 +50,7 @@ export class AmbImagenesComponent implements OnInit { |
50 | 50 | filterItems() { |
51 | 51 | |
52 | 52 | this.auxProductos = this.articulos.filter(x => { |
53 | - return x.DetArt.toLowerCase().includes(this.searchTerm.toLowerCase()) | |
53 | + return x.DET_LAR.toLowerCase().includes(this.searchTerm.toLowerCase()) | |
54 | 54 | }); |
55 | 55 | } |
56 | 56 |