Skip to content

Commit 359d744

Browse files
committed
fix: CToggler: fix class name
1 parent 3747339 commit 359d744

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Toggler/CToggler.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default {
1313
},
1414
render (h, { data, props, slots }) {
1515
const attrs = props.tag === 'button' ? { type: 'button' } : null
16-
const type = props.inNavbar ? 'navbar' : props.inHeader ? 'header' : null
16+
const type = props.inNavbar ? 'navbar' : props.inHeader ? 'c-header' : null
1717
const staticClass = type ? `${type}-toggler` : ''
1818
const iconClass = type ? `${staticClass}-icon` : ''
1919
return h(

0 commit comments

Comments
 (0)