Skip to content

Commit 034f71c

Browse files
authored
fix: set the correct activce classname for stickyScrollBar (#6169)
1 parent c8b7848 commit 034f71c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/vc-table/stickyScrollBar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ export default defineComponent<StickyScrollBarProps>({
230230
onMousedown={onMouseDown}
231231
ref={scrollBarRef}
232232
class={classNames(`${prefixCls}-sticky-scroll-bar`, {
233-
[`${prefixCls}-sticky-scroll-bar-active`]: isActive,
233+
[`${prefixCls}-sticky-scroll-bar-active`]: isActive.value,
234234
})}
235235
style={{
236236
width: `${scrollBarWidth.value}px`,

0 commit comments

Comments
 (0)