fix(product): Only apply default order to products if user has not specified one (#10535)
This commit is contained in:
committed by
GitHub
parent
ab1bfb966d
commit
16192d9b30
5
.changeset/cold-suns-smell.md
Normal file
5
.changeset/cold-suns-smell.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@medusajs/product": patch
|
||||
---
|
||||
|
||||
fix(product): Only apply default order to products if user has not specified an order
|
||||
@@ -228,8 +228,7 @@ export default class ProductModuleService
|
||||
return {
|
||||
...config,
|
||||
order: {
|
||||
id: "ASC",
|
||||
...config?.order,
|
||||
...(config?.order ?? { id: "ASC" }),
|
||||
...(hasImagesRelation
|
||||
? {
|
||||
images: {
|
||||
|
||||
Reference in New Issue
Block a user