We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
botttom-start
1 parent d6c89dd commit 81e25afCopy full SHA for 81e25af
packages/coreui-vue/src/components/badge/CBadge.ts
@@ -22,14 +22,14 @@ const CBadge = defineComponent({
22
/**
23
* Position badge in one of the corners of a link or button.
24
*
25
- * @values 'top-start', 'top-end', 'bottom-end', 'botttom-start'
+ * @values 'top-start', 'top-end', 'bottom-end', 'bottom-start'
26
*/
27
position: {
28
type: String,
29
default: undefined,
30
required: false,
31
validator: (value: string) => {
32
- return ['top-start', 'top-end', 'bottom-end', 'botttom-start'].includes(value)
+ return ['top-start', 'top-end', 'bottom-end', 'bottom-start'].includes(value)
33
},
34
35
0 commit comments