Skip to content

Commit 5231979

Browse files
committed
fix: clicks auto scrolling
1 parent 7cb2079 commit 5231979

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/client/internals/NoteDisplay.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ function processNote() {
116116
}
117117
: null
118118
119-
if (!enabled && props.autoScroll && clicks === current)
119+
if (enabled && props.autoScroll && clicks === current)
120120
marker.scrollIntoView({ block: 'center', behavior: 'smooth' })
121121
}
122122
}

0 commit comments

Comments
 (0)