diff --git a/app/code/Magento/Review/view/frontend/web/js/process-reviews.js b/app/code/Magento/Review/view/frontend/web/js/process-reviews.js index 88c61fa38af34..78dda7e8b0ebf 100644 --- a/app/code/Magento/Review/view/frontend/web/js/process-reviews.js +++ b/app/code/Magento/Review/view/frontend/web/js/process-reviews.js @@ -41,7 +41,11 @@ define([ requiredReviewTabRole = 'tab'; if (reviewTab.attr('role') === requiredReviewTabRole && reviewTab.hasClass('active')) { - processReviews(config.productReviewUrl); + if(location.hash=='#reviews') { + processReviews(config.productReviewUrl, true); + } else { + processReviews(config.productReviewUrl); + } } else { reviewTab.one('beforeOpen', function () { processReviews(config.productReviewUrl);