We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e1b02ab + 02e5b80 commit 0e27236Copy full SHA for 0e27236
src/apps/copilots/src/pages/copilot-opportunity-list/index.tsx
@@ -102,7 +102,13 @@ const tableColumns: TableColumn<CopilotOpportunity>[] = [
102
{
103
label: 'Payment',
104
propertyName: 'paymentType',
105
- type: 'text',
+ renderer: (copilotOpportunity: CopilotOpportunity) => (
106
+ <div>
107
+ {copilotOpportunity.paymentType === 'standard'
108
+ ? copilotOpportunity.paymentType : copilotOpportunity.otherPaymentType}
109
+ </div>
110
+ ),
111
+ type: 'element',
112
},
113
]
114
0 commit comments