fix: mobile tap on quick search items

pull/8197/head
Konstantinos Kaloutas 2023-01-04 11:14:05 +02:00 committed by Tienson Qin
parent c006ac3588
commit 21988d3df9
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ export const LogseqQuickSearch = observer(
}}
// we have to use mousedown && stop propagation EARLY, otherwise some
// default behavior of clicking the rendered elements will happen
onMouseDownCapture={e => {
onPointerDownCapture={e => {
if (onChosen()) {
e.stopPropagation()
e.preventDefault()