diff --git a/src/constants/orderservice.ts b/src/constants/orderservice.ts index d5c57e71..d95622ff 100644 --- a/src/constants/orderservice.ts +++ b/src/constants/orderservice.ts @@ -21,7 +21,7 @@ export const OSStatusStyleMap = new Map< ], [ 'CONCLUDED', - { color: colors.green[100], fontWeight: 'bold', fontSize: '16px' }, + { color: colors.green[700], fontWeight: 'bold', fontSize: '16px' }, ], ['WARRANTY', { color: colors.red, fontWeight: 'bold', fontSize: '16px' }], ]); diff --git a/src/pages/order-service/OrderServiceControl.tsx b/src/pages/order-service/OrderServiceControl.tsx index 6c2a5401..93d37112 100644 --- a/src/pages/order-service/OrderServiceControl.tsx +++ b/src/pages/order-service/OrderServiceControl.tsx @@ -58,15 +58,15 @@ export interface Equipment { export interface OrderServiceData { id: string; - date: Date; + date: string; description?: string; authorId: string; receiverName: string; sender?: string; equipmentSnapshot: any; senderFunctionalNumber: string; - createdAt: Date; - updatedAt: Date; + createdAt: string; + updatedAt: string; equipment: Equipment; history: History; receiverFunctionalNumber: string; @@ -407,9 +407,9 @@ function OrderServiceTable() {