Issues 157,156,155

This commit is contained in:
2025-08-05 11:43:12 -05:00
parent 738f1d929b
commit 93ff8c3378
11 changed files with 64 additions and 331 deletions

View File

@@ -89,9 +89,9 @@ export class SearchModalComponent {
this.selectedPropertyType ||
this.criteria.minNumberEmployees ||
this.criteria.maxNumberEmployees ||
this.criteria.establishedSince ||
this.criteria.establishedUntil ||
this.criteria.brokerName
this.criteria.establishedMin ||
this.criteria.brokerName ||
this.criteria.title
);
}
removeFilter(filterType: string) {
@@ -131,12 +131,14 @@ export class SearchModalComponent {
this.criteria.maxNumberEmployees = null;
break;
case 'established':
this.criteria.establishedSince = null;
this.criteria.establishedUntil = null;
this.criteria.establishedMin = null;
break;
case 'brokerName':
this.criteria.brokerName = null;
break;
case 'title':
this.criteria.title = null;
break;
}
this.searchService.search(this.criteria);
}