Create a small pagination component.
When the component mounts, a warning is displayed.
Not show the warning.
Shows the warning.
馃憢 Thanks for opening your first issue here! If you're reporting a 馃悶 bug, please make sure you've completed all the fields in the issue template so we can best help.
We get a lot of issues on this repo, so please be patient and we will get back to you as soon as we can.
Valid bug. I do not think this is a duplicate. PRs welcome.
Confirmed. This is a valid bug.
I think the problem is that the arialLabel prop on PaginationItem is being copied into the MenuItem in addition to the correct aria-label prop.
I say this only because if you replace the current MenuItem.create line here with the following 3 lines the error goes away:
var props = Object.assign({}, this.props);
delete props.ariaLabel;
return MenuItem.create(props, {
@gtod there is already a PR being worked on for this. 馃帀 Please see above history for reference to #2607
I don't think the issue is fixed in v0.79.0.
Create a new issue with repro on codesandbox, please.
Most helpful comment
Confirmed. This is a valid bug.