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