Преглед изворни кода

fix(admin-ui): Fixed tracking code not showing in order history (#3402)

Naoya Hatayama пре 5 месеци
родитељ
комит
6002c21222

+ 1 - 1
packages/admin-ui/src/lib/order/src/components/order-history/order-history.component.ts

@@ -129,7 +129,7 @@ export class OrderHistoryComponent {
                 entry.type === HistoryEntryType.ORDER_FULFILLMENT_TRANSITION) &&
             this.order.fulfillments
         ) {
-            return this.order.fulfillments.find(f => f.id === entry.data.fulfillmentId);
+            return this.order.fulfillments.find(f => f.id == entry.data.fulfillmentId);
         }
     }