Skip to content

Commit

Permalink
Merge pull request #17864 from jeclrsg/hpcc-30359-weird-paging-for-no…
Browse files Browse the repository at this point in the history
…-results

HPCC-30359 ECL Watch v9 empty results paging text

Reviewed-by: Gordon Smith <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Oct 5, 2023
2 parents 8fb0a35 + 646c727 commit ce3f90d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp/src/src-react/components/controls/Grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ export const FluentPagedFooter: React.FunctionComponent<FluentPagedFooterProps>
updatePage(Math.round(index + 1).toString());
}}
onRenderVisibleItemLabel={props => {
const start = props.selectedPageIndex === 0 ? 1 : (props.selectedPageIndex * props.itemsPerPage) + 1;
const start = props.totalItemCount === 0 ? 0 : props.selectedPageIndex === 0 ? 1 : (props.selectedPageIndex * props.itemsPerPage) + 1;
const end = (props.itemsPerPage * (props.selectedPageIndex + 1)) > props.totalItemCount ? props.totalItemCount : props.itemsPerPage * (props.selectedPageIndex + 1);
return <div className={paginationStyles.paginationLabel}>
{start} {props.strings.divider} {end} {nlsHPCC.Of.toLowerCase()} {props.totalItemCount} {nlsHPCC.Rows} {selectionCount ? `(${selectionCount} ${nlsHPCC.Selected})` : ""}
Expand Down

0 comments on commit ce3f90d

Please sign in to comment.