Skip to content

Commit 1ac5f6d

Browse files
committed
ACP2E-463: Reward Point Balance email fixed for all stores
1 parent 926b334 commit 1ac5f6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Magento/Review/Model/ResourceModel/Review/Collection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ protected function _initSelect()
125125
$this->getSelect()->join(
126126
['detail' => $this->getReviewDetailTable()],
127127
'main_table.review_id = detail.review_id',
128-
['detail_id', 'title', 'detail', 'nickname', 'customer_id']
128+
['detail_id', 'store_id', 'title', 'detail', 'nickname', 'customer_id']
129129
);
130130
return $this;
131131
}

app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/CollectionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public function testInitSelect(): void
104104
->with(
105105
['detail' => 'review_detail'],
106106
'main_table.review_id = detail.review_id',
107-
['detail_id', 'title', 'detail', 'nickname', 'customer_id']
107+
['detail_id', 'store_id', 'title', 'detail', 'nickname', 'customer_id']
108108
);
109109
$this->objectManager->getObject(
110110
Collection::class,

0 commit comments

Comments
 (0)