Correctly print backslash-escaped characters (#943)

This commit is contained in:
Alberto Iannaccone 2022-04-06 18:05:32 +02:00 committed by GitHub
parent e5b34624ac
commit aba9db6a6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,8 +115,10 @@ const _Row = ({
return (
(data.lines[index].lineLen && (
<div style={style}>
{timestamp}
{data.lines[index].message}
<pre>
{timestamp}
{data.lines[index].message}
</pre>
</div>
)) ||
null