mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
(cherry picked from commit f16b2c40c1
)
Co-authored-by: Ivana Huckova <30407135+ivanahuckova@users.noreply.github.com>
This commit is contained in:
parent
5a68094a45
commit
e9b6b66a46
@ -167,15 +167,12 @@ class UnThemedLogDetailsRow extends PureComponent<Props, State> {
|
|||||||
<td className={style.logDetailsLabel}>{parsedKey}</td>
|
<td className={style.logDetailsLabel}>{parsedKey}</td>
|
||||||
<td className={cx(styles.wordBreakAll, wrapLogMessage && styles.wrapLine)}>
|
<td className={cx(styles.wordBreakAll, wrapLogMessage && styles.wrapLine)}>
|
||||||
{parsedValue}
|
{parsedValue}
|
||||||
{links &&
|
{links?.map((link) => (
|
||||||
links.map((link) => {
|
<span key={link.title}>
|
||||||
return (
|
|
||||||
<>
|
<DataLinkButton link={link} />
|
||||||
|
</span>
|
||||||
<DataLinkButton link={link} />
|
))}
|
||||||
</>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
{showFieldsStats && (
|
{showFieldsStats && (
|
||||||
<LogLabelStats
|
<LogLabelStats
|
||||||
stats={fieldStats!}
|
stats={fieldStats!}
|
||||||
|
Loading…
Reference in New Issue
Block a user