Explore: Add missing height to logs in Explore (#112176)

* Explore: Add missing height to logs in Explore

* Add max height to controlled log rows
This commit is contained in:
Matias Chomicki
2025-10-08 15:57:39 +00:00
committed by GitHub
parent 3c6768460c
commit a0fc683a67
+5 -1
View File
@@ -1003,7 +1003,7 @@ const UnthemedLogs: React.FunctionComponent<Props> = (props: Props) => {
{(!config.featureToggles.newLogsPanel || visualisationType === 'table') &&
config.featureToggles.logsPanelControls &&
hasData && (
<div className={styles.logRowsWrapper} data-testid="logRows">
<div className={styles.controlledLogRowsWrapper} data-testid="logRows">
<ControlledLogRows
ref={logsContainerRef}
logsTableFrames={props.logsFrames}
@@ -1257,6 +1257,10 @@ const getStyles = (theme: GrafanaTheme2, wrapLogMessage: boolean, tableHeight: n
overflowY: 'visible',
width: '100%',
}),
controlledLogRowsWrapper: css({
width: '100%',
maxHeight: '80vh',
}),
logRowsWrapper: css({
width: '100%',
}),