Skip to content

Commit

Permalink
fix accordion (#246)
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Pircher <[email protected]>
  • Loading branch information
patricklx authored Nov 16, 2024
1 parent 8e91927 commit ff16b0c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions carbon-components-ember/src/components/accordion.gts
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,13 @@ class Item extends Component<ItemSignature> {
{{@title}}
</div>
</button>
<div id='accordion-item-{{this.itemId}}' class='cds--accordion__content'>
{{yield}}
<div class='cds--accordion__wrapper'>
<div
id='accordion-item-{{this.itemId}}'
class='cds--accordion__content'
>
{{yield}}
</div>
</div>
</li>
</template>
Expand Down

0 comments on commit ff16b0c

Please sign in to comment.