try fix rule count sort

This commit is contained in:
Collin Barrett 2018-09-28 05:51:08 -05:00
parent 5d8e2feeac
commit f6e8256af1

View file

@ -16,8 +16,12 @@ export const RuleCount = (columnVisibility: IColumnVisibility[]) =>
} as Column);
const sortMethod = (a: string, b: string) =>
a > b
? 1
a
? b
? a > b
? 1
: -1
: 1
: -1;
const Cell = (ruleCount: number) =>