Skip to content

Commit b532859

Browse files
committed
styles: prettify syntax
1 parent 59229a3 commit b532859

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/navbar/CNavbar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const CNavbar = defineComponent({
6969
type: String,
7070
default: undefined,
7171
required: false,
72-
validator: (value: string) =>{
72+
validator: (value: string) => {
7373
return ['fixed-top', 'fixed-bottom', 'sticky-top'].includes(value)
7474
},
7575
},

src/components/toast/CToastHeader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const CToastHeader = defineComponent({
2424
slots.default && slots.default(),
2525
props.closeButton &&
2626
h(CToastClose, {
27-
onClose: () => emit('close'),
27+
onClose: () => emit('close'),
2828
}),
2929
])
3030
},

0 commit comments

Comments
 (0)