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

Commit 3862854

Browse files
authored
Merge pull request bootstrap-vue-next#1343 from phlegx/fix/b-nav-item-toggle-directive
fix(BNavItem): don't stop click event for toggle directive.
2 parents 6fbc7d9 + 4428dce commit 3862854

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/bootstrap-vue-next/src/components/BNav/BNavItem.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:active-class="activeClass ?? 'active'"
88
:tabindex="disabledBoolean ? -1 : undefined"
99
:aria-disabled="disabledBoolean ? true : undefined"
10-
@click.stop="emit('click', $event)"
10+
@click="emit('click', $event)"
1111
>
1212
<slot />
1313
</BLink>

0 commit comments

Comments
 (0)