Merge pull request #652 from mirumee/fix/variant-delete

Fix deleting just one variant
This commit is contained in:
Dominik Żegleń 2020-08-18 11:23:12 +02:00 committed by GitHub
commit 355c796bd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,7 +52,10 @@ const ProductUpdate: React.FC<RouteComponentProps<any>> = ({ match }) => {
return (
<ProductUpdateComponent
id={decodeURIComponent(match.params.id)}
params={params}
params={{
...params,
ids: getArrayQueryParam(qs.ids)
}}
/>
);
};