Skip to content

Commit

Permalink
fix(react-library): add the missing attribute to the accordion panel
Browse files Browse the repository at this point in the history
  • Loading branch information
AliKdhim87 authored and Robbert committed Apr 30, 2024
1 parent 95ed800 commit b8d861f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/component-library-react/src/Accordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ export const AccordionSection = forwardRef(
{children}
</section>
) : (
<div {...panelAttributes}>{children}</div>
<div id={panelId} {...panelAttributes}>
{children}
</div>
)}
</div>
);
Expand Down

0 comments on commit b8d861f

Please sign in to comment.