Skip to content

Commit

Permalink
fix: search in icons plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
cocotime committed Oct 10, 2024
1 parent aeddab7 commit 42624a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ export class IconSearchComponent {

public onSearchIcons(event: Event): void {
const target = event.target as HTMLInputElement;
this.searchIcons.emit(target?.value || '');
this.searchIcons.emit(target?.value.toLowerCase() || '');
}
}

0 comments on commit 42624a2

Please sign in to comment.