Merge pull request #391 from mirumee/fix/list-actions
Fix crash when one product is selected
This commit is contained in:
commit
06d94b707e
2 changed files with 2 additions and 0 deletions
|
@ -28,6 +28,7 @@ All notable, unreleased changes to this project will be documented in this file.
|
||||||
- Fix variant stock input - #377 by @dominik-zeglen
|
- Fix variant stock input - #377 by @dominik-zeglen
|
||||||
- Add filtering to views - #361 by @dominik-zeglen
|
- Add filtering to views - #361 by @dominik-zeglen
|
||||||
- Do not render password change if authenticating - #378 by @dominik-zeglen
|
- Do not render password change if authenticating - #378 by @dominik-zeglen
|
||||||
|
- Fix crash when one product is selected - #391 by @dominik-zeglen
|
||||||
|
|
||||||
## 2.0.0
|
## 2.0.0
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,7 @@ const ProductList: React.FC<RouteComponentProps<any>> = ({ location }) => {
|
||||||
...qs,
|
...qs,
|
||||||
categories: getArrayQueryParam(qs.categories),
|
categories: getArrayQueryParam(qs.categories),
|
||||||
collections: getArrayQueryParam(qs.collections),
|
collections: getArrayQueryParam(qs.collections),
|
||||||
|
ids: getArrayQueryParam(qs.ids),
|
||||||
productTypes: getArrayQueryParam(qs.productTypes)
|
productTypes: getArrayQueryParam(qs.productTypes)
|
||||||
},
|
},
|
||||||
ProductListUrlSortField
|
ProductListUrlSortField
|
||||||
|
|
Loading…
Reference in a new issue