mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-22 15:50:32 +00:00
fix(items): quantityonhandCell.
This commit is contained in:
@@ -51,7 +51,7 @@ export const ItemCodeAccessor = (row) =>
|
|||||||
|
|
||||||
export const QuantityOnHandCell = ({ cell: { value } }) => {
|
export const QuantityOnHandCell = ({ cell: { value } }) => {
|
||||||
return isNumber(value) ? (
|
return isNumber(value) ? (
|
||||||
<span className={'quantity_on_hand'}>{value}</span>
|
<span className={value < 0 ? 'quantity_on_hand' : null}>{value}</span>
|
||||||
) : null;
|
) : null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user