Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into llm-search-rebase-impr…
Browse files Browse the repository at this point in the history
…ovements
  • Loading branch information
frankyhollywood committed Aug 15, 2024
2 parents ce595d8 + cda0534 commit ca67551
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ export const MetadataViewTableContainer = (props: MetadataViewTableContainerProp
const renderTablePaginationLabel = ({from, to, countIsLoading, countHasError}) => (
<span>
<Typography variant="body2" component="span" display="inline">
{from}-{to} of{' '}
{from}-{data?.rows ? Number(from) + data.rows.length - 1 : '...'} of{' '}
</Typography>
<Typography variant="body2" component="span" display="inline" className={classes.tablePaginationLabel}>
{getTotalCountString(count?.count, to)}
Expand Down

0 comments on commit ca67551

Please sign in to comment.