Fix: Include imageUrl/imageUrlBack in database select query
- Previous optimization only selected colorPhotos fields - But the code checks existing.imageUrl to decide if print area should update - imageUrl/imageUrlBack were undefined, breaking the print area update logic - Now properly includes these fields in the select so the check works
This commit is contained in:
@@ -106,7 +106,8 @@
|
||||
"Bash(git commit -m 'Refactor: Move image display into PhotoPrintAreaField component *)",
|
||||
"Bash(git commit -m 'Optimize: Skip color photo processing when not uploading new photos *)",
|
||||
"Bash(git commit -m 'Optimize: Fetch only necessary fields from database *)",
|
||||
"Bash(git commit -m 'Fix: Always update print area coordinates when editing product *)"
|
||||
"Bash(git commit -m 'Fix: Always update print area coordinates when editing product *)",
|
||||
"Bash(git commit -m 'Fix: Include imageUrl/imageUrlBack in database select query *)"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -206,6 +206,8 @@ export async function updateProduct(formData: FormData) {
|
||||
select: {
|
||||
colorPhotos: true,
|
||||
colorPhotosBack: true,
|
||||
imageUrl: true,
|
||||
imageUrlBack: true,
|
||||
},
|
||||
});
|
||||
if (!existing) throw new Error('Product not found.');
|
||||
|
||||
Reference in New Issue
Block a user