2
0
mirror of https://github.com/inventree/inventree-app.git synced 2026-04-26 03:13:25 +00:00

Fix for quantity display

This commit is contained in:
Oliver
2021-07-13 00:19:56 +10:00
parent f058cefad2
commit 5728d1e698
+1 -1
View File
@@ -401,7 +401,7 @@ class InvenTreeStockItem extends InvenTreeModel {
if (serialNumber.isNotEmpty) {
return "SN: $serialNumber";
} else {
return quantity.toString().trim();
return quantityString;
}
}