is there a way to update filter with async data
问题 I had build the next angular filter: App.filter('cur2symbol', ['CurrenciesService', function (CurrenciesService) { return function (input, iso) { input = input || ''; iso = iso || 'ILS'; var symbol= CurrenciesService.getCurrencySymbolByIso(iso); return symbol+input; }; }]) the meaning of this filter is to get currency iso code and convert is to symbol for examle: the next code {{200|cur2symbol:"ILS"}} will output ₪200 . My problem is that the CurrenciesService service is Async, so the filter