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:
@@ -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%',
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user