diff --git a/packages/edit-site/src/components/sidebar-dataviews/default-views.js b/packages/edit-site/src/components/sidebar-dataviews/default-views.js index 7610adb006509f..6a10e0cd95d7b3 100644 --- a/packages/edit-site/src/components/sidebar-dataviews/default-views.js +++ b/packages/edit-site/src/components/sidebar-dataviews/default-views.js @@ -54,6 +54,36 @@ export const DEFAULT_VIEWS = { icon: pages, view: DEFAULT_PAGE_BASE, }, + { + title: __( 'Published' ), + slug: 'published', + icon: pages, + view: { + ...DEFAULT_PAGE_BASE, + filters: [ + { + field: 'status', + operator: OPERATOR_IS_ANY, + value: 'publish', + }, + ], + }, + }, + { + title: __( 'Scheduled' ), + slug: 'future', + icon: pages, + view: { + ...DEFAULT_PAGE_BASE, + filters: [ + { + field: 'status', + operator: OPERATOR_IS_ANY, + value: 'future', + }, + ], + }, + }, { title: __( 'Drafts' ), slug: 'drafts',