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

Makes all casing consistent #2694

Merged
merged 1 commit into from
Sep 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion editor/sidebar/featured-image/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const PANEL_NAME = 'featured-image';

function FeaturedImage( { featuredImageId, onUpdateImage, onRemoveImage, media, isOpened, onTogglePanel } ) {
return (
<PanelBody title={ __( 'Featured image' ) } opened={ isOpened } onToggle={ onTogglePanel }>
<PanelBody title={ __( 'Featured Image' ) } opened={ isOpened } onToggle={ onTogglePanel }>
<div className="editor-featured-image__content">
{ !! featuredImageId &&
<MediaUploadButton
Expand Down
2 changes: 1 addition & 1 deletion editor/sidebar/post-pending-status/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function PostPendingStatus( { isPublished, instanceId, status, onUpdateSt

return (
<PanelRow>
<label htmlFor={ pendingId }>{ __( 'Pending review' ) }</label>
<label htmlFor={ pendingId }>{ __( 'Pending Review' ) }</label>
<FormToggle
id={ pendingId }
checked={ status === 'pending' }
Expand Down
2 changes: 1 addition & 1 deletion editor/sidebar/post-sticky/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function PostSticky( { onUpdateSticky, postType, postSticky = false, inst

return (
<PanelRow>
<label htmlFor={ stickyToggleId }>{ __( 'Stick to the front page' ) }</label>
<label htmlFor={ stickyToggleId }>{ __( 'Stick to the Front Page' ) }</label>
<FormToggle
checked={ postSticky }
onChange={ () => onUpdateSticky( ! postSticky ) }
Expand Down