Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show PostFeaturedImage in editor #25412

Merged
merged 3 commits into from
Sep 29, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change wording
  • Loading branch information
ntsekouras committed Sep 21, 2020
commit 872e8149d47b9791965a1ae4fc455dad20be2f41
4 changes: 2 additions & 2 deletions packages/block-library/src/post-featured-image/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ function PostFeaturedImageDisplay( { context: { postId, postType } } ) {
[ featuredImage ]
);
if ( ! media ) {
return __( 'Featured Image is not set' );
return __( 'No Featured Image is set' );
}
const alt = media.alt_text || `{postType} Featured Media`;
const alt = media.alt_text || __( 'No alternative text set' );
return (
<ResponsiveWrapper
naturalWidth={ media.media_details.width }
Expand Down