8000 fix(CAvatar): add missing size · HelloLeoLyn/coreui-vue@2572bea · GitHub
[go: up one dir, main page]

Skip to content

Commit 2572bea

Browse files
committed
fix(CAvatar): add missing size
1 parent 5d01cdc commit 2572bea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/avatar/CAvatar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const CAvatar = defineComponent({
2424
default: undefined,
2525
required: false,
2626
validator: (value: string) => {
27-
return ['sm', 'lg', 'xl'].includes(value)
27+
return ['sm', 'md', 'lg', 'xl'].includes(value)
2828
},
2929
},
3030
/**

0 commit comments

Comments
 (0)
0