Skip to content

Commit 2e39f0d

Browse files
committed
fixes #398
1 parent c4392fc commit 2e39f0d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/sidebar/search/AddressInput.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,10 @@ export default function AddressInput(props: AddressInputProps) {
209209
setHasFocus(true)
210210
props.clearDragDrop()
211211
}}
212-
onBlur={() => {}}
212+
onBlur={() => {
213+
// see #398
214+
if (!isSmallScreen) hideSuggestions()
215+
}}
213216
value={text}
214217
placeholder={tr(
215218
type == QueryPointType.From ? 'from_hint' : type == QueryPointType.To ? 'to_hint' : 'via_hint'

0 commit comments

Comments
 (0)