From 613b630fd37cdc8e8cf45ef86eb14472c58a80a9 Mon Sep 17 00:00:00 2001 From: Bello Babakolo Date: Wed, 28 Aug 2024 12:36:34 +0100 Subject: [PATCH] feat: expose fields in the order edit page --- .../lib/components/order-edit.component.ts | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/modules/order/src/lib/components/order-edit.component.ts b/packages/modules/order/src/lib/components/order-edit.component.ts index a9204116..3d31c7b2 100644 --- a/packages/modules/order/src/lib/components/order-edit.component.ts +++ b/packages/modules/order/src/lib/components/order-edit.component.ts @@ -101,11 +101,11 @@ export const transformOrderToInput = ( // postNumber: null, // }, }, - // contact: { - // name: null, - // email: null, - // phone: null, - // }, + contact: { + name: null, + email: null, + phone: null, + }, // comments: null, }, billingAddress: { @@ -141,11 +141,11 @@ export const transformOrderToInput = ( // postNumber: null, // }, }, - // contact: { - // name: null, - // email: null, - // phone: null, - // }, + contact: { + name: null, + email: null, + phone: null, + }, // comments: null, }, totalAmounts: [...totalAmounts],