Remove some debug messages

This commit is contained in:
Oliver Walters 2019-05-28 18:12:47 +10:00
parent 4011d66b6f
commit 8255332950

View File

@ -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]);
});
}