Skip to content

Commit

Permalink
fixes #398
Browse files Browse the repository at this point in the history
  • Loading branch information
karussell committed Jul 23, 2024
1 parent c4392fc commit 2e39f0d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/sidebar/search/AddressInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,10 @@ export default function AddressInput(props: AddressInputProps) {
setHasFocus(true)
props.clearDragDrop()
}}
onBlur={() => {}}
onBlur={() => {
// see #398
if (!isSmallScreen) hideSuggestions()
}}
value={text}
placeholder={tr(
type == QueryPointType.From ? 'from_hint' : type == QueryPointType.To ? 'to_hint' : 'via_hint'
Expand Down

0 comments on commit 2e39f0d

Please sign in to comment.