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
Describe the bug
Not sure this is already tracked. If it's a known issue, of course do feel free to close.
create a post
press the Publish button and observe your browser's dev tools console
I'm getting the following warnings:
Warning: React does not recognize the `postType` prop on a DOM element.
Warning: React does not recognize the `hasPublishAction` prop on a DOM element.
Warning: React does not recognize the `isPublished` prop on a DOM element.
Warning: React does not recognize the `isSaving` prop on a DOM element.
Warning: React does not recognize the `isDirty` prop on a DOM element.
Seems to me they come from the post publish panel:
This does not happen for me using WordPress 5.0 with the plugin off. It is happening for me using WordPress 4.9.8 and 5.0 with the plugin activated, though.
Describe the bug
Not sure this is already tracked. If it's a known issue, of course do feel free to close.
I'm getting the following warnings:
Seems to me they come from the post publish panel:
gutenberg/packages/editor/src/components/post-publish-panel/index.js
Line 68 in a8fe865
Where
{ ...additionalProps }
are passed to a<div>
element. Dumping the passed props, they're:where I guess only
aria-label
,role
, andtabIndex
should be passed because they make this div a navigable region.The text was updated successfully, but these errors were encountered: