transform(movies:any[],term:string): any { if(term == undefined){ return movies ; } return movies.filter((movies)=>{ return movies.title.includes(term); }); } }
Вы писали фильмы в методе фильтра.
transform(movies:any[],term:string): any { if(term == undefined){ return movies ; } return movies.filter((movie)=>{ return movie.title.includes(term); }); } }