Skip to content

Commit

Permalink
Fix errant space
Browse files Browse the repository at this point in the history
  • Loading branch information
earnjam committed Mar 13, 2020
1 parent 3e15e89 commit a81316b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function PublishButtonLabel( {
} else if ( isBeingScheduled && 'private' !== visibility ) {
return hasNonPostEntityChanges ? __( 'Schedule…' ) : __( 'Schedule' );
} else if ( isPublished ) {
return hasNonPostEntityChanges ? __( 'Update…' ) : __( 'Update' ) ;
return hasNonPostEntityChanges ? __( 'Update…' ) : __( 'Update' );
}

return __( 'Publish' );
Expand Down

0 comments on commit a81316b

Please sign in to comment.