Skip to content

Commit e943db8

Browse files
committed
fix
1 parent c807107 commit e943db8

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/components/BDropdown/BDropdown.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ const buttonClasses = computed(() => ({
144144
145145
const dropdownMenuClasses = computed(() => ({
146146
'dropdown-menu-dark': props.dark,
147+
'dropdown-menu-right': props.right,
147148
}))
148149
149150
const buttonAttr = computed(() => ({

src/components/BNavItemDropdown.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ interface BNavItemDropdownProps {
2828
offsetParent?: boolean
2929
split?: boolean
3030
splitVariant?: ButtonVariant
31+
noCaret?: boolean
3132
variant?: ButtonVariant
3233
}
3334
@@ -41,6 +42,7 @@ withDefaults(defineProps<BNavItemDropdownProps>(), {
4142
left: false,
4243
offsetParent: false,
4344
split: false,
45+
noCaret: false,
4446
variant: 'link',
4547
})
4648
</script>

0 commit comments

Comments
 (0)