Skip to content

Commit 81e25af

Browse files
committed
fix(CBadge): change wrong prop value botttom-start
1 parent d6c89dd commit 81e25af

File tree

1 file changed

+2
-2
lines changed
  • packages/coreui-vue/src/components/badge

1 file changed

+2
-2
lines changed

packages/coreui-vue/src/components/badge/CBadge.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ const CBadge = defineComponent({
2222
/**
2323
* Position badge in one of the corners of a link or button.
2424
*
25-
* @values 'top-start', 'top-end', 'bottom-end', 'botttom-start'
25+
* @values 'top-start', 'top-end', 'bottom-end', 'bottom-start'
2626
*/
2727
position: {
2828
type: String,
2929
default: undefined,
3030
required: false,
3131
validator: (value: string) => {
32-
return ['top-start', 'top-end', 'bottom-end', 'botttom-start'].includes(value)
32+
return ['top-start', 'top-end', 'bottom-end', 'bottom-start'].includes(value)
3333
},
3434
},
3535
/**

0 commit comments

Comments
 (0)