Skip to content

Commit

Permalink
chore: yarn format
Browse files Browse the repository at this point in the history
  • Loading branch information
SychO9 committed Oct 23, 2024
1 parent 1af7a36 commit 0464324
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions framework/core/js/src/common/components/AbstractSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,15 @@ export default abstract class AbstractSearch<T extends SearchAttrs = SearchAttrs
};

return (
<div role="search" className="Search" aria-label={this.attrs.a11yRoleLabel} onclick={() => {
this.$('input').blur();
setTimeout(() => openSearchModal(), 150);
}}>
<div
role="search"
className="Search"
aria-label={this.attrs.a11yRoleLabel}
onclick={() => {
this.$('input').blur();
setTimeout(() => openSearchModal(), 150);
}}
>
<Input
type="search"
className="Search-input"
Expand Down

0 comments on commit 0464324

Please sign in to comment.