Hello everyone! :)
I'm facing an Angularjs problem (it is in an old project). I have a search input. When I search for something e.g 'searchTerm'
a get request is made to an internal api and it returns an array of objects with many properties. In the same time the search resutls are filtered based on
the filter i have put.
The problem is that when I have only the firstName filter everything works well but when I add the lastName
filter nothing works. Is it a syntax error? Any ideas?
***I want a filtering based on firstName, lastName properties only.