From 8bad78b0d344d996c90dadf73da31261e18b87d5 Mon Sep 17 00:00:00 2001 From: elforjani13 <39470382+elforjani13@users.noreply.github.com> Date: Wed, 10 Nov 2021 12:16:17 +0200 Subject: [PATCH] fix: cashflow statement row_types. --- .../CashFlowStatement/CashFlowStatementTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.js b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.js index 166151406..4f813c1d2 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.js +++ b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.js @@ -32,7 +32,7 @@ export default function CashFlowStatementTable({ const rowClassNames = (row) => { return [ - `row-type--${row.original.rowTypes}`, + `row-type--${row.original.row_types}`, `row-type--${row.original.id}`, ]; };