We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bf0c75f + 12e7920 commit 1d92fc9Copy full SHA for 1d92fc9
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Release Notes for Craft Commerce
2
3
+## Unreleased
4
+
5
+- Fixed a bug where order errors weren't showing on the Edit Order page.
6
7
## 5.2.8 - 2024-12-04
8
9
- Fixed a bug where line items weren’t getting hyperlinked within Edit Order pages. ([#3792](https://github.com/craftcms/commerce/issues/3792))
src/controllers/OrdersController.php
@@ -1444,6 +1444,7 @@ private function _registerJavascript(array $variables): void
1444
1445
if ($order->hasErrors()) {
1446
$response['order']['errors'] = $order->getErrors();
1447
+ $response['errors'] = $order->getErrors();
1448
$response['error'] = Craft::t('commerce', 'The order is not valid.');
1449
}
1450
0 commit comments