Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit aba9db6

Browse filesBrowse files
author
Alberto Iannaccone
authored
Correctly print backslash-escaped characters (arduino#943)
1 parent e5b3462 commit aba9db6
Copy full SHA for aba9db6

File tree

Expand file treeCollapse file tree

1 file changed

+4
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-2
lines changed

‎arduino-ide-extension/src/browser/serial/monitor/serial-monitor-send-output.tsx

Copy file name to clipboardExpand all lines: arduino-ide-extension/src/browser/serial/monitor/serial-monitor-send-output.tsx
+4-2Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,10 @@ const _Row = ({
115115
return (
116116
(data.lines[index].lineLen && (
117117
<div style={style}>
118-
{timestamp}
119-
{data.lines[index].message}
118+
<pre>
119+
{timestamp}
120+
{data.lines[index].message}
121+
</pre>
120122
</div>
121123
)) ||
122124
null

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.