mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
try fix rule count sort
This commit is contained in:
parent
1db169a2d2
commit
8dcc4a3ebc
1 changed files with 6 additions and 2 deletions
|
|
@ -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) =>
|
||||
|
|
|
|||
Loading…
Reference in a new issue