diff --git a/InvenTree/templates/js/translated/part.js b/InvenTree/templates/js/translated/part.js index 4ed631fe61..a5f296bf3f 100644 --- a/InvenTree/templates/js/translated/part.js +++ b/InvenTree/templates/js/translated/part.js @@ -814,11 +814,14 @@ function loadPartTable(table, url, options={}) { }); } - columns.push({ + col = { field: 'IPN', title: 'IPN', - sortable: true, - }), + }; + if (!options.params.ordering) { + col['sortable'] = true; + }; + columns.push(col); columns.push({ field: 'name',