You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 4, 2020. It is now read-only.
Creating Accordion using panels props causes missing key
Steps
Create Accordion using the panels props. Example (from the docs):
{
key: "p",
title: "What is a point?",
content:
"Use the haptic SDD circuit, then you can index the redundant pixel!"
},
{
key: "d",
title: "What is a dimension of a point?",
content: "We need to copy the primary USB firewall!"
}
];
Expected Result
Both AccordionTitle and AccordionContent have key prop related to the specified key.
Actual Result
AccordionTitle has key related to its content (for a string it duplicates the string value). AccordionContent has no key.