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

@@ -37,4 +37,8 @@ export class CreateBook implements OnInit {
async ngOnInit() {
await this.fetchAuthors();
}
filterAuthor(input: string, option: any) {
return option.nzLabel.toLowerCase().includes(input.toLowerCase());
}
}