mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Logs: Fixed LogContext being underneath the table (#52165)
This commit is contained in:
parent
a4d33a0f43
commit
63776d5a0e
@ -123,7 +123,9 @@ class UnThemedLogRowMessage extends PureComponent<Props> {
|
||||
const styles = getStyles(theme);
|
||||
|
||||
return (
|
||||
<td className={style.logsRowMessage}>
|
||||
// When context is open, the position has to be NOT relative.
|
||||
// Setting the postion as inline-style to overwrite the more sepecific style definition from `style.logsRowMessage`.
|
||||
<td style={contextIsOpen ? { position: 'unset' } : undefined} className={style.logsRowMessage}>
|
||||
<div
|
||||
className={cx({ [styles.positionRelative]: wrapLogMessage }, { [styles.horizontalScroll]: !wrapLogMessage })}
|
||||
>
|
||||
|
Loading…
Reference in New Issue
Block a user