Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit e9874d8

Browse files
committed
fix(BLink): prevented blink from having 'active' class when the link is active and have :active-class prop passed to it
1 parent 75e4f10 commit e9874d8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/bootstrap-vue-next/src/components/BLink/BLink.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,7 @@ const routerAttr = computed(() => ({
152152
}))
153153
154154
const computedLinkClasses = computed(() => ({
155-
active: activeBoolean.value,
156-
[props.activeClass ?? '']: activeBoolean.value,
155+
[props.activeClass ?? 'active']: activeBoolean.value,
157156
disabled: disabledBoolean.value,
158157
}))
159158

0 commit comments

Comments
 (0)