From 074ed0064ffdeae981ec58ec4f382f54e45ffddb Mon Sep 17 00:00:00 2001 From: elforjani3 Date: Sun, 27 Dec 2020 11:59:34 +0200 Subject: [PATCH] fix:cost_price in items data table. --- client/src/containers/Items/ItemsDataTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/containers/Items/ItemsDataTable.js b/client/src/containers/Items/ItemsDataTable.js index 7b1d8f925..5f6ced6cf 100644 --- a/client/src/containers/Items/ItemsDataTable.js +++ b/client/src/containers/Items/ItemsDataTable.js @@ -186,7 +186,7 @@ function ItemsDataTable({ { Header: formatMessage({ id: 'cost_price' }), accessor: (row) => - !isBlank(row.sell_price) ? ( + !isBlank(row.cost_price) ? ( ) : ( ''