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.
1 parent fcaf340 commit 270bac7Copy full SHA for 270bac7
packages/coreui-vue/src/components/collapse/CCollapse.ts
@@ -34,10 +34,9 @@ const CCollapse = defineComponent({
34
})
35
el.style.height = `${el.scrollHeight}px`
36
}
37
- // TODO: find solution how to remove height
38
const handleAfterEnter = (el: RendererElement) => {
39
el.classList.remove('collapsing')
40
- el.style.height = 'auto'
+ el.style.removeProperty('height')
41
42
const handleBeforeLeave = (el: RendererElement) => {
43
el.classList.add('show')
0 commit comments