PreviewLogRow: add missing preview styles (#103542)

This commit is contained in:
Matias Chomicki
2025-04-10 14:30:13 +00:00
committed by GitHub
parent 42dd2336b9
commit 52eaf3f16d
2 changed files with 3 additions and 2 deletions
@@ -1132,6 +1132,7 @@ const UnthemedLogs: React.FunctionComponent<Props> = (props: Props) => {
onUnpinLine={onPinToContentOutlineClick}
onPinLine={onPinToContentOutlineClick}
pinLineButtonTooltipTitle={pinLineButtonTooltipTitle}
renderPreview
/>
</InfiniteScroll>
</div>
@@ -21,9 +21,9 @@ export const PreviewLogRow = ({ row, showDuplicates, showLabels, showTime, displ
preview
/>
) : (
<td>{row.entry}</td>
<td className={rest.styles.logsRowMessage}>{row.entry}</td>
)}
<td></td>
<td className={`log-row-menu-cell ${rest.styles.logRowMenuCell}`}></td>
</tr>
);
};