diff --git a/packages/editor/src/components/post-switch-to-draft-button/index.js b/packages/editor/src/components/post-switch-to-draft-button/index.js index 37c413130e025..590d7722b8229 100644 --- a/packages/editor/src/components/post-switch-to-draft-button/index.js +++ b/packages/editor/src/components/post-switch-to-draft-button/index.js @@ -28,9 +28,7 @@ export default function PostSwitchToDraftButton() { }; }, [] ); - if ( ! isPublished && ! isScheduled ) { - return null; - } + const isDisabled = isSaving || ( ! isPublished && ! isScheduled ); let alertMessage; if ( isPublished ) { @@ -50,9 +48,11 @@ export default function PostSwitchToDraftButton() {