Skip to content
Merged
Show file tree
Hide file tree
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
Next Next commit
Update home template icon
  • Loading branch information
jameskoster committed Jun 28, 2023
commit ae6286154cd93a8d11d7215cca10528685e31cef
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import {
page,
plus,
pin,
postList,
verse,
search,
tag,
} from '@wordpress/icons';
Expand Down Expand Up @@ -78,7 +78,7 @@ const DEFAULT_TEMPLATE_SLUGS = [

const TEMPLATE_ICONS = {
'front-page': home,
home: postList,
home: verse,
single: pin,
page,
archive,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { __ } from '@wordpress/i18n';
import { useEntityRecords, store as coreStore } from '@wordpress/core-data';
import { decodeEntities } from '@wordpress/html-entities';
import { privateApis as routerPrivateApis } from '@wordpress/router';
import { layout, page, home, loop, plus } from '@wordpress/icons';
import { layout, page, home, verse, plus } from '@wordpress/icons';
import { useSelect } from '@wordpress/data';

/**
Expand Down Expand Up @@ -159,7 +159,7 @@ export default function SidebarNavigationScreenPages() {
itemIcon = home;
break;
case postsPage:
itemIcon = loop;
itemIcon = verse;
break;
default:
itemIcon = page;
Expand Down