0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-04 13:50:13 -05:00

fix: search in icons plugin

This commit is contained in:
Marina López 2024-10-10 13:48:24 +02:00
parent aeddab7917
commit b4664a2adc

View file

@ -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() || '');
}
}