From 825533295034ca048b24d08ee8440f20ba8ccb37 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Tue, 28 May 2019 18:12:47 +1000 Subject: [PATCH] Remove some debug messages --- .../static/script/bootstrap/bootstrap-table-group-by.js | 5 ----- 1 file changed, 5 deletions(-) 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]); }); }