Skip to content

Commit

Permalink
Capitalizing 'Manager' because Block Manager is a proper noun (#19375)
Browse files Browse the repository at this point in the history
* Capitalizing 'Manager' because Block Manager is a proper noun like Block Editor.

* Update test

Co-authored-by: Marcus Kazmierczak <[email protected]>
  • Loading branch information
mapk and mkaz committed Jan 1, 2020
1 parent 1b3516a commit 504385a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe( 'Allowed Blocks Filter', () => {
} );

it( 'should remove not allowed blocks from the block manager', async () => {
await clickOnMoreMenuItem( 'Block manager' );
await clickOnMoreMenuItem( 'Block Manager' );

const BLOCK_LABEL_SELECTOR = '.edit-post-manage-blocks-modal__checklist-item .components-checkbox-control__label';
await page.waitForSelector( BLOCK_LABEL_SELECTOR );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function ManageBlocksModal( { isActive, closeModal } ) {
return (
<Modal
className="edit-post-manage-blocks-modal"
title={ __( 'Block manager' ) }
title={ __( 'Block Manager' ) }
closeLabel={ __( 'Close' ) }
onRequestClose={ closeModal }
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function ManageBlocksMenuItem( { openModal } ) {
openModal( 'edit-post/manage-blocks' );
} }
>
{ __( 'Block manager' ) }
{ __( 'Block Manager' ) }
</MenuItem>
);
}
Expand Down

0 comments on commit 504385a

Please sign in to comment.