2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 05:25:42 +00:00
This commit is contained in:
Oliver Walters
2020-11-03 20:37:33 +11:00
parent 2b91f69c7d
commit ac03dab8de
5 changed files with 36 additions and 35 deletions

View File

@ -658,14 +658,14 @@ function loadBuildTable(table, options) {
},
{
field: 'quantity',
title: '{% trans "Quantity" %}',
title: '{% trans "Completed" %}',
sortable: true,
formatter: function(value, row, index, field) {
return makeProgressBar(
row.completed,
row.quantity,
{
style: 'max',
//style: 'max',
}
);
}