mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
only show non-zero rule count
This commit is contained in:
parent
bac92c183d
commit
811bd5a19d
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ function Languages(props: any) {
|
|||
}
|
||||
|
||||
function RuleCount(props: any) {
|
||||
return props.count
|
||||
return props.count > 0
|
||||
? <li className="list-group-item">
|
||||
<p>Rule Count: {props.count.toLocaleString()}</p>
|
||||
</li>
|
||||
|
|
|
|||
Loading…
Reference in a new issue