added search into all selects on all forms

This commit is contained in:
2025-11-23 14:38:25 +01:00
parent af1dec318f
commit aa96fa25ca
9 changed files with 24 additions and 7 deletions

View File

@@ -84,4 +84,8 @@ export class UpdateLoan implements OnInit {
await this.fetchUsers();
await this.fetchBooks();
}
filter(input: string, option: any) {
return option.nzLabel.toLowerCase().includes(input.toLowerCase());
}
}