remove comments
This commit is contained in:
parent
822efd30b0
commit
262737cbb4
|
@ -57,50 +57,42 @@ export default () => {
|
||||||
report: 'revenue',
|
report: 'revenue',
|
||||||
title: __( 'Revenue', 'woocommerce-admin' ),
|
title: __( 'Revenue', 'woocommerce-admin' ),
|
||||||
component: RevenueReport,
|
component: RevenueReport,
|
||||||
// id: 'woocommerce-analytics-revenue',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
report: 'products',
|
report: 'products',
|
||||||
title: __( 'Products', 'woocommerce-admin' ),
|
title: __( 'Products', 'woocommerce-admin' ),
|
||||||
component: ProductsReport,
|
component: ProductsReport,
|
||||||
// id: 'woocommerce-analytics-products',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
report: 'variations',
|
report: 'variations',
|
||||||
title: __( 'Variations', 'woocommerce-admin' ),
|
title: __( 'Variations', 'woocommerce-admin' ),
|
||||||
component: VariationsReport,
|
component: VariationsReport,
|
||||||
// id: 'woocommerce-analytics-variations',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
report: 'orders',
|
report: 'orders',
|
||||||
title: __( 'Orders', 'woocommerce-admin' ),
|
title: __( 'Orders', 'woocommerce-admin' ),
|
||||||
component: OrdersReport,
|
component: OrdersReport,
|
||||||
// id: 'woocommerce-analytics-orders',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
report: 'categories',
|
report: 'categories',
|
||||||
title: __( 'Categories', 'woocommerce-admin' ),
|
title: __( 'Categories', 'woocommerce-admin' ),
|
||||||
component: CategoriesReport,
|
component: CategoriesReport,
|
||||||
// id: 'woocommerce-analytics-categories',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
report: 'coupons',
|
report: 'coupons',
|
||||||
title: __( 'Coupons', 'woocommerce-admin' ),
|
title: __( 'Coupons', 'woocommerce-admin' ),
|
||||||
component: CouponsReport,
|
component: CouponsReport,
|
||||||
// id: 'woocommerce-analytics-coupons',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
report: 'taxes',
|
report: 'taxes',
|
||||||
title: __( 'Taxes', 'woocommerce-admin' ),
|
title: __( 'Taxes', 'woocommerce-admin' ),
|
||||||
component: TaxesReport,
|
component: TaxesReport,
|
||||||
// id: 'woocommerce-analytics-taxes',
|
|
||||||
},
|
},
|
||||||
manageStock === 'yes'
|
manageStock === 'yes'
|
||||||
? {
|
? {
|
||||||
report: 'stock',
|
report: 'stock',
|
||||||
title: __( 'Stock', 'woocommerce-admin' ),
|
title: __( 'Stock', 'woocommerce-admin' ),
|
||||||
component: StockReport,
|
component: StockReport,
|
||||||
// id: 'woocommerce-analytics-stock',
|
|
||||||
}
|
}
|
||||||
: null,
|
: null,
|
||||||
{
|
{
|
||||||
|
@ -113,7 +105,6 @@ export default () => {
|
||||||
report: 'downloads',
|
report: 'downloads',
|
||||||
title: __( 'Downloads', 'woocommerce-admin' ),
|
title: __( 'Downloads', 'woocommerce-admin' ),
|
||||||
component: DownloadsReport,
|
component: DownloadsReport,
|
||||||
// id: 'woocommerce-analytics-downloads',
|
|
||||||
},
|
},
|
||||||
].filter( Boolean );
|
].filter( Boolean );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue