-
Notifications
You must be signed in to change notification settings - Fork 164
Open
Description
Take this example for bootstrap pager:
<Pager>
{previous &&
<LinkContainer to={{ pathname: 'example/list', query: { page: (current_page-1) }}} >
<Pager.Item previous href="#">← Previous Page</Pager.Item>
</LinkContainer>
}
{next &&
<LinkContainer to={{ pathname: 'example/list', query: { page: (current_page+1) }}} >
<Pager.Item next href="#">Next Page →</Pager.Item>
</LinkContainer>
}
</Pager>
I get the below warning:
Warning: Unknown prop `active` on <a> tag. Remove this prop from the element. For details, see https://fb.me/react-unknown-prop
in a (created by SafeAnchor)
in SafeAnchor (created by PagerItem)
in li (created by PagerItem)
in PagerItem (created by OrdersListComponent)
in LinkContainer (created by OrdersListComponent)
in ul (created by Pager)
in Pager (created by OrdersListComponent)
vhpoet, TobiEiss, shir, Voxis, bdoss and 5 more
Metadata
Metadata
Assignees
Labels
No labels