🌐 AI搜索 & 代理 主页
Skip to content

Commit e9a99e6

Browse files
authored
fix(events): correct capture value of EVENT_OPTIONS_NO_CAPTURE (#4763)
1 parent 280dec8 commit e9a99e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/events.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { isObject } from './inspect'
44
// --- Constants ---
55

66
export const EVENT_OPTIONS_PASSIVE = { passive: true }
7-
export const EVENT_OPTIONS_NO_CAPTURE = { passive: true, capture: true }
7+
export const EVENT_OPTIONS_NO_CAPTURE = { passive: true, capture: false }
88

99
// --- Utils ---
1010

0 commit comments

Comments
 (0)