Can't use apply pipe inside *ngFor.
*ngFor="let page of pages | somepipe | somefn | apply: x, y"
...
export function somefn(..) {..}
...
@Component({..})
class Component {
somefn = somefn;
}
the error I get is: No pipe found with name '...'.ngtsc(-998004)
Any ideas how to solve it?
