Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Oct 9, 2024
1 parent deb7af7 commit 9c4b966
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/project-editor/lvgl/actions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ class NewLVGLActionDialogState {

onSearchChange = (event: any) => {
runInAction(() => {
this.searchText = ($(event.target).val() as string).trim();
this.searchText = $(event.target).val() as string;
this._selectedActionName = this.filteredActionDefinitions[0]?.name;
});
};
Expand Down

0 comments on commit 9c4b966

Please sign in to comment.