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:
parent
aeddab7917
commit
b4664a2adc
1 changed files with 1 additions and 1 deletions
|
@ -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() || '');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue