From 74d8d431e43a2a189bd3ed05b2dd6d351ffe7e5d Mon Sep 17 00:00:00 2001 From: Jonathan Belcher Date: Wed, 17 Oct 2018 16:50:05 -0400 Subject: [PATCH] Removes unwanted orders report filters (https://github.com/woocommerce/woocommerce-admin/pull/553) --- .../client/analytics/report/orders/config.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/plugins/woocommerce-admin/client/analytics/report/orders/config.js b/plugins/woocommerce-admin/client/analytics/report/orders/config.js index 6e72f689eff..b9cf5e9f0b8 100644 --- a/plugins/woocommerce-admin/client/analytics/report/orders/config.js +++ b/plugins/woocommerce-admin/client/analytics/report/orders/config.js @@ -14,19 +14,6 @@ const { orderStatuses } = wcSettings; export const filters = [ { label: __( 'All Orders', 'wc-admin' ), value: 'all' }, - { - label: __( 'Single Order', 'wc-admin' ), - value: 'single', - subFilters: [ - { - component: 'Search', - value: 'single_order', - path: [ 'single' ], - }, - ], - }, - { label: __( 'Top Orders by Items Sold', 'wc-admin' ), value: 'top_items' }, - { label: __( 'Top Orders by Gross Sales', 'wc-admin' ), value: 'top_sales' }, { label: __( 'Advanced Filters', 'wc-admin' ), value: 'advanced' }, ];