mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
fix:cost_price in items data table.
This commit is contained in:
@@ -186,7 +186,7 @@ function ItemsDataTable({
|
|||||||
{
|
{
|
||||||
Header: formatMessage({ id: 'cost_price' }),
|
Header: formatMessage({ id: 'cost_price' }),
|
||||||
accessor: (row) =>
|
accessor: (row) =>
|
||||||
!isBlank(row.sell_price) ? (
|
!isBlank(row.cost_price) ? (
|
||||||
<Money amount={row.cost_price} currency={'USD'} />
|
<Money amount={row.cost_price} currency={'USD'} />
|
||||||
) : (
|
) : (
|
||||||
''
|
''
|
||||||
|
|||||||
Reference in New Issue
Block a user