This repository was archived by the owner on Aug 26, 2021. It is now read-only.

Description
Feature Request
Is this feature request relating to an existing component? Please describe.
- Component name: link-list
- Component version: 3.0.8
Make the link-list component compatible with react-router-dom ver 5.1 and up - specifically with the new Link component. At the moment link-list only works with the Link component that is version 5.0.1 and below. Our project is looking to use some of the new react-router-dom features found in 5.1 but is currently stuck using 5.0.1 due to this issue.
Do you have a suggestion for a new component?
Remove/change the check for if linkComponent is a function. [email protected] Link component seems to be a context object.
// REMOVE THIS
else if( typeof LinkComponent === 'function' ) {
attributeOptions.to = link;
}
Ideally this would be changed in the header and footer components as well.