try fix rule count sort

This commit is contained in:
Collin M. Barrett 2018-09-28 05:51:08 -05:00
parent 1db169a2d2
commit 8dcc4a3ebc

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) =>