Fix bug YH-3129. reviewed by redding.
Showing
1 changed file
with
2 additions
and
2 deletions
@@ -152,9 +152,9 @@ class SubjectPostContainer extends Component { | @@ -152,9 +152,9 @@ class SubjectPostContainer extends Component { | ||
152 | onPressShareGoods() { | 152 | onPressShareGoods() { |
153 | let item = this.props.subject.items.get(this.sid); | 153 | let item = this.props.subject.items.get(this.sid); |
154 | let params = { | 154 | let params = { |
155 | - productSkn: item.shareGoods.productId, | 155 | + productId: item.shareGoods.productId, |
156 | }; | 156 | }; |
157 | - NativeModules.YH_CommunityHelper.displayProductDetail(params); | 157 | + NativeModules.YH_CommunityHelper.displayProductDetailWithProductId(params); |
158 | } | 158 | } |
159 | onPressAvatar(uid) { | 159 | onPressAvatar(uid) { |
160 | this.props.actions.goToUserOrMe(uid); | 160 | this.props.actions.goToUserOrMe(uid); |
-
Please register or login to post a comment