Explore: Handle newlines in LogRow Highlighter (#17425)

This commit is contained in:
rrFeng
2019-06-06 19:55:04 +08:00
committed by Torkel Ödegaard
parent e06abb30aa
commit c31b939e10

View File

@@ -284,6 +284,7 @@ export class LogRow extends PureComponent<Props, State> {
<span className={styles}> <span className={styles}>
{parsed && ( {parsed && (
<Highlighter <Highlighter
style={{ whiteSpace: 'pre-wrap' }}
autoEscape autoEscape
highlightTag={FieldHighlight(this.onClickHighlight)} highlightTag={FieldHighlight(this.onClickHighlight)}
textToHighlight={entry} textToHighlight={entry}
@@ -293,6 +294,7 @@ export class LogRow extends PureComponent<Props, State> {
)} )}
{!parsed && needsHighlighter && ( {!parsed && needsHighlighter && (
<Highlighter <Highlighter
style={{ whiteSpace: 'pre-wrap' }}
textToHighlight={entry} textToHighlight={entry}
searchWords={highlights} searchWords={highlights}
findChunks={findHighlightChunksInText} findChunks={findHighlightChunksInText}