Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Greg Ziółkowski <[email protected]>
  • Loading branch information
ZebulanStanphill and gziolo committed Dec 2, 2020
1 parent 88756b8 commit fc7545b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/block-library/src/post-author/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function PostAuthorEdit( { isSelected, context, attributes, setAttributes } ) {
className="wp-block-post-author__byline"
multiline={ false }
aria-label={ __( 'Post author byline text' ) }
placeholder={ __( 'Write byline …' ) }
placeholder={ __( 'Write byline…' ) }
value={ byline }
onChange={ ( value ) =>
setAttributes( { byline: value } )
Expand Down
2 changes: 1 addition & 1 deletion packages/block-library/src/site-tagline/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default function SiteTaglineEdit( { attributes, setAttributes } ) {
allowedFormats={ [] }
onChange={ setSiteTagline }
aria-label={ __( 'Site tagline text' ) }
placeholder={ __( 'Site Tagline' ) }
placeholder={ __( 'Write site tagline…' ) }
tagName="p"
value={ siteTagline }
{ ...blockProps }
Expand Down
2 changes: 1 addition & 1 deletion packages/block-library/src/site-title/edit/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function SiteTitleEdit( { attributes, setAttributes } ) {
<RichText
tagName={ tagName }
aria-label={ __( 'Site title text' ) }
placeholder={ __( 'Site Title' ) }
placeholder={ __( 'Write site title…' ) }
value={ title }
onChange={ setTitle }
allowedFormats={ [] }
Expand Down
2 changes: 1 addition & 1 deletion packages/block-library/src/verse/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function VerseEdit( {
} );
} }
aria-label={ __( 'Verse text' ) }
placeholder={ __( 'Write…' ) }
placeholder={ __( 'Write verse…' ) }
onMerge={ mergeBlocks }
textAlign={ textAlign }
{ ...blockProps }
Expand Down

0 comments on commit fc7545b

Please sign in to comment.