{
return (
{hasData &&
- !deferLogs && // Only inject highlighterExpression in the first set for performance reasons
firstRows.map((row, index) => (
{
/>
))}
{hasData &&
- !deferLogs &&
renderAll &&
lastRows.map((row, index) => (
{
onClickLabel={onClickLabel}
/>
))}
- {hasData && deferLogs && Rendering {rowCount} rows...}
+ {hasData && !renderAll && Rendering {rowCount - previewLimit!} rows...}
);
}