Skip to content

Commit

Permalink
fix keyboard space bar leaking into host page
Browse files Browse the repository at this point in the history
  • Loading branch information
blackforestboi committed May 17, 2024
1 parent d48d79f commit 429c89d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/dashboard-refactor/header/search-bar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ export default class SearchBar extends PureComponent<SearchBarProps, State> {
e.stopPropagation()
}
}}
onKeyUp={(e) => {
e.stopPropagation()
}}
onChange={this.handleChange}
autoComplete="off"
/>
Expand Down

0 comments on commit 429c89d

Please sign in to comment.