diff --git a/plugins/woocommerce-admin/client/analytics/report/products/index.js b/plugins/woocommerce-admin/client/analytics/report/products/index.js index 0abb861d4ce..4d116dc636d 100644 --- a/plugins/woocommerce-admin/client/analytics/report/products/index.js +++ b/plugins/woocommerce-admin/client/analytics/report/products/index.js @@ -133,7 +133,8 @@ export default compose( withSelect( ( select, props ) => { const { query } = props; const { getItems, isGetItemsRequesting, getItemsError } = select( 'wc-api' ); - const isSingleProductView = query.products && 1 === query.products.split( ',' ).length; + const isSingleProductView = + ! query.search && query.products && 1 === query.products.split( ',' ).length; if ( isSingleProductView ) { const productId = parseInt( query.products ); const includeArgs = { include: productId };