I've been searching around but haven't found any questions related to this topic.
Currently, I am utilizing Angular UI-bootstrap typeahead feature.
Here is what I have implemented:
<input type="text" ng-model="loc" typeahead="location for location in filteredLocations = (locations | filter:$viewValue)" class="form-control" placeholder="Location" />
While typing, the options appear in the typeahead-popup. However, how can I display a message like "No matches found" in that same popup when there are no matches?
Thank you in advance