(count: number, total: number, query: string)
| 89 | } |
| 90 | |
| 91 | function countLabel(count: number, total: number, query: string) { |
| 92 | if (!query.trim()) { |
| 93 | return `${total}` |
| 94 | } |
| 95 | |
| 96 | return `${count}/${total}` |
| 97 | } |
| 98 | |
| 99 | function categoryRank(category: string) { |
| 100 | if (category === "Project Commands") { |