From af949f8d6b07a6a1b7b7b5f50b3ca6464dcc9358 Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Thu, 4 Mar 2021 17:15:12 -0800 Subject: [PATCH] Payments table null check. --- .../accounting-payments-table.component.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/accounting-payments-table/accounting-payments-table.component.jsx b/client/src/components/accounting-payments-table/accounting-payments-table.component.jsx index 1b32eba04..77b68c145 100644 --- a/client/src/components/accounting-payments-table/accounting-payments-table.component.jsx +++ b/client/src/components/accounting-payments-table/accounting-payments-table.component.jsx @@ -66,12 +66,12 @@ export default function AccountingPayablesTableComponent({ return record.job.owner ? ( {`${record.job.ownr_fn || ""} ${record.job.ownr_ln || ""} ${ - record.job.ownr_co_nm + record.job.ownr_co_nm || "" }`} ) : ( {`${record.job.ownr_fn || ""} ${record.job.ownr_ln || ""} ${ - record.job.ownr_co_nm + record.job.ownr_co_nm || "" }`} ); },