Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ const CommunityCloudInner = () => {

<ScreenMetaSlot />

<h2>{__('Community Cloud', 'code-snippets')}</h2>

<hr className="wp-header-end" />

{'snippets' === currentTab && <CloudSearch snippetView={snippetView} />}
Expand Down
2 changes: 2 additions & 0 deletions src/js/components/ManageMenu/SnippetsTable/SnippetsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ const SnippetsTableInner = () => {

<ScreenMetaSlot />

<h2>{__('Snippets', 'code-snippets')}</h2>

<hr className="wp-header-end" />

<SafeModeNotice />
Expand Down
2 changes: 1 addition & 1 deletion src/php/Admin/Menus/Settings_Menu.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public function render() {
<div class="wrap" data-active-tab="<?php echo esc_attr( $current_section ); ?>">
<?php $this->render_section_tabs(); ?>

<h2 class="screen-reader-text"><?php esc_html_e( 'Settings', 'code-snippets' ); ?></h2>
<h2><?php esc_html_e( 'Settings', 'code-snippets' ); ?></h2>

<?php
if ( code_snippets()->is_compact_menu() ) {
Expand Down
Loading