2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-02 03:30:54 +00:00
This commit is contained in:
Oliver Walters
2020-10-23 00:08:40 +11:00
parent 23ac83d2a8
commit 6245d65ebc
4 changed files with 20 additions and 15 deletions

View File

@ -252,7 +252,7 @@ function loadBuildOutputAllocationTable(buildId, partId, output, options={}) {
},
{
field: 'sub_part_detail.full_name',
title: "{% trans "Required Part" %}",
title: '{% trans "Required Part" %}',
sortable: true,
formatter: function(value, row, index, field) {
var url = `/part/${row.sub_part}/`;
@ -326,7 +326,7 @@ function loadBuildTable(table, options) {
$(table).inventreeTable({
method: 'get',
formatNoMatches: function() {
return "{% trans "No builds matching query" %}";
return '{% trans "No builds matching query" %}';
},
url: options.url,
queryParams: filters,