@vendure/admin-ui 3.3.6-master-202507110238 → 3.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/common/version.d.ts +1 -1
- package/fesm2022/vendure-admin-ui-core.mjs +60 -34
- package/fesm2022/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-customer.mjs +0 -1
- package/fesm2022/vendure-admin-ui-customer.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-order.mjs +0 -1
- package/fesm2022/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-react.mjs +0 -1
- package/fesm2022/vendure-admin-ui-react.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-settings.mjs +3 -6
- package/fesm2022/vendure-admin-ui-settings.mjs.map +1 -1
- package/package.json +2 -2
- package/static/i18n-messages/es.json +1 -1
|
@@ -1923,7 +1923,6 @@ class OrderHistoryComponent {
|
|
|
1923
1923
|
for (const line of this.order.lines) {
|
|
1924
1924
|
const cancellationLine = cancellationLines.find(l => l.orderLineId === line.id);
|
|
1925
1925
|
if (cancellationLine) {
|
|
1926
|
-
const count = itemMap.get(line.productVariant.name);
|
|
1927
1926
|
itemMap.set(line.productVariant.name, cancellationLine.quantity);
|
|
1928
1927
|
}
|
|
1929
1928
|
}
|