diff --git a/client/src/containers/Items/components.js b/client/src/containers/Items/components.js index 9e33ca911..b4f8609ac 100644 --- a/client/src/containers/Items/components.js +++ b/client/src/containers/Items/components.js @@ -51,7 +51,7 @@ export const ItemCodeAccessor = (row) => export const QuantityOnHandCell = ({ cell: { value } }) => { return isNumber(value) ? ( - {value} + {value} ) : null; };