From 02e5b80ec70878de7b0d04a0c4a0dd3dcbac613b Mon Sep 17 00:00:00 2001 From: himaniraghav3 Date: Thu, 24 Jul 2025 17:19:01 +0530 Subject: [PATCH] PM-1496 Show other payment type in list --- .../copilots/src/pages/copilot-opportunity-list/index.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/apps/copilots/src/pages/copilot-opportunity-list/index.tsx b/src/apps/copilots/src/pages/copilot-opportunity-list/index.tsx index 7f3be943d..7ba5eb598 100644 --- a/src/apps/copilots/src/pages/copilot-opportunity-list/index.tsx +++ b/src/apps/copilots/src/pages/copilot-opportunity-list/index.tsx @@ -102,7 +102,13 @@ const tableColumns: TableColumn[] = [ { label: 'Payment', propertyName: 'paymentType', - type: 'text', + renderer: (copilotOpportunity: CopilotOpportunity) => ( +
+ {copilotOpportunity.paymentType === 'standard' + ? copilotOpportunity.paymentType : copilotOpportunity.otherPaymentType} +
+ ), + type: 'element', }, ]