2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-01 13:06:45 +00:00

Merge pull request #2595 from SchrodingersGat/build-refresh

Build refresh
This commit is contained in:
Oliver 2022-02-03 15:30:41 +11:00 committed by GitHub
commit 2b11d5ed52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -252,6 +252,7 @@
</a></li> </a></li>
</ul> </ul>
</div> </div>
{% include "filter_list.html" with id='incompletebuilditems' %}
</div> </div>
{% endif %} {% endif %}
</div> </div>

View File

@ -594,6 +594,7 @@ function loadBuildOutputTable(build_info, options={}) {
{ {
success: function() { success: function() {
$(table).bootstrapTable('refresh'); $(table).bootstrapTable('refresh');
$('#build-stock-table').bootstrapTable('refresh');
} }
} }
); );
@ -610,7 +611,7 @@ function loadBuildOutputTable(build_info, options={}) {
data: { data: {
output: pk output: pk
}, },
onSuccess: function() { success: function() {
$(table).bootstrapTable('refresh'); $(table).bootstrapTable('refresh');
} }
} }