We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb6655 commit d4864acCopy full SHA for d4864ac
src/components/grid.tsx
@@ -527,7 +527,7 @@ export function Grid(props: GridProps) {
527
<div tw="m-2 text-gray-200 whitespace-nowrap">
528
Showing {filteredData.length.toLocaleString()}
529
{isFiltered && ` of ${data.length.toLocaleString()}`} row
530
- {(isFiltered ? filteredData : data).length === 1 ? '' : 's'}
+ {data.length === 1 ? '' : 's'} × {columnNames.length.toLocaleString()} column{columnNames.length === 1 ? '' : 's'}
531
</div>
532
533
0 commit comments