this.testService.searchInput$.pipe(
takeUntil(this.ngUnsubscribe$)
).subscribe((res: any) => {
console.log('test searchInput$');
this.load();
});
this.testService.clearFilterBtn$.pipe(
takeUntil(this.ngUnsubscribe$)
).subscribe((res: any) => {
console.log('test backBtn$');
this.load();
});