Skip to content

Commit

Permalink
Project list: fix footer layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Laoujin committed Jan 14, 2025
1 parent e994c73 commit 8dafd6a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions frontend/src/components/project/models/getProjectFeature.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,16 +133,15 @@ const projectListConfig = (config: ProjectFeatureBuilderConfig): IList<FullProje
key: 'partnerTariff',
header: 'project.partner.tariff',
value: p => <ProjectClientTariff projectClient={p.details.partner} />,
},
{
}, {
key: 'endCustomer',
header: '',
value: p => <ProjectEndCustomerIcon endCustomer={p.details.endCustomer} endCustomerClientModel={p.endCustomer}/>
value: p => <ProjectEndCustomerIcon endCustomer={p.details.endCustomer} endCustomerClientModel={p.endCustomer}/>,
footer: (models: FullProjectModel[]) => <ProjectClientForecastFooter models={models} />,
}, {
key: 'client',
header: 'project.client.clientId',
value: p => <InvoiceClientCell client={p.client} />,
footer: (models: FullProjectModel[]) => <ProjectClientForecastFooter models={models} />,
}, {
key: 'clientTariff',
header: 'project.client.tariff',
Expand Down

0 comments on commit 8dafd6a

Please sign in to comment.