I created a checkbox in my template to hide all elements that have been taken place earlier than today depending on the bookingEnd in my JSON data. The recent-filter.pipe.ts pipe should filter all past events.
To my problem, I get an error TS2365: Operator '>' cannot be applied to types 'number' and 'Date'. in advance in the pipe and no data gets displayed on my template. The whole scenario works in pure JavaScript, so I think that bookingEnd is definitely a date object.
Can you help me why there is no data after applying the pipe filter?
JSON Data:
{
  bookingStart: "2019-10-27T23:00:00.000Z",
  bookingEnd: "2019-12-29T23:00:00.000Z",
  city: "Manhattan",
  confirmed: false,
  country: "UK"
}
recent-filter.pipe.ts:
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
  name: 'recentFilter'
})
export class RecentFilterPipe implements PipeTransform {
  transform(list: any[], checked: boolean) {
    if (checked) {
      const futureDates = list.filter(x => {
        return Date.parse(x.bookingEnd) > new Date();
      });
      return futureDates;
    } else {
      return list;
    }
  }
}
bookings-table.component.html:
<tr
  *ngFor="
    let item of bookings
    | recentFilter: checked
  ">
      ...
</tr>
 
    