diff --git a/InvenTree/static/script/bootstrap/bootstrap-table-group-by.js b/InvenTree/static/script/bootstrap/bootstrap-table-group-by.js index 586e69e186..d31dbec22a 100644 --- a/InvenTree/static/script/bootstrap/bootstrap-table-group-by.js +++ b/InvenTree/static/script/bootstrap/bootstrap-table-group-by.js @@ -70,15 +70,10 @@ var that = this; tableGroups = []; - console.log('Sorting...'); - - console.log(typeof this.options.groupByField); - if (this.options.groupBy && this.options.groupByField !== '') { if (1 || (this.options.sortName != this.options.groupByField)) { this.data.sort(function (a, b) { - console.log('x'); return a[that.options.groupByField].localeCompare(b[that.options.groupByField]); }); }