fknop / angular-pipes

Useful pipes for Angular
https://fknop.gitbook.io/angular-pipes/
MIT License
732 stars 157 forks source link

Where Pipe #107

Closed certifirm closed 4 years ago

certifirm commented 4 years ago

I'm submitting a ... (check one with "x")

[X] bug report => search github for a similar issue or PR before submitting
[ ] feature request

I have an array

centrosDropdown = [ 
{ "label": "TODOS", "value": null },
{ "label": "Barcelona", "value": 11 }, 
{ "label": "Madrid", "value": 9 },
{ "label": "Valencia", "value": 10 } ]

I am using in a view:

{{ centrosDropdown | where: ['value': 11] }}

throws error:

Missing expected ] at column 35 in [ {{ centrosDropdown | where: ['value': 11] }}

What I am missing??

certifirm commented 4 years ago

Sorry. My mistake