Skip to content

Commit

Permalink
fix group sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Dec 25, 2018
1 parent bcb9023 commit ed4610f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/provider/sort.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,16 @@ export class CompareLookup {
this.data.push({asc: c.asc, v: vi, lookup, setter: createSetter(vi, lookup, missingCount)});
}
}

if (isSorting) {
return;
}

{
const v = ECompareValueType.STRING;
const lookup = toCompareLookUp(rawLength, v);
this.data.push({asc: true, v, lookup, setter: createSetter(v, lookup, missingCount)});
}
}

get sortOrders() {
Expand Down

0 comments on commit ed4610f

Please sign in to comment.