@vendure/admin-ui 3.3.8-master-202507310242 → 3.3.8
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.
|
@@ -1901,7 +1901,7 @@ class OrderHistoryComponent {
|
|
|
1901
1901
|
if ((entry.type === HistoryEntryType.ORDER_FULFILLMENT ||
|
|
1902
1902
|
entry.type === HistoryEntryType.ORDER_FULFILLMENT_TRANSITION) &&
|
|
1903
1903
|
this.order.fulfillments) {
|
|
1904
|
-
return this.order.fulfillments.find(f => f.id
|
|
1904
|
+
return this.order.fulfillments.find(f => f.id == entry.data.fulfillmentId);
|
|
1905
1905
|
}
|
|
1906
1906
|
}
|
|
1907
1907
|
getPayment(entry) {
|