Skip to content

Commit 76673cb

Browse files
nmzaheerper1234
authored andcommitted
Time format in SerialMonitor changed.Fixes arduino#580
1 parent 8f95fd6 commit 76673cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ const _Row = ({
109109
}) => {
110110
const timestamp =
111111
(data.timestamp &&
112-
`${dateFormat(data.lines[index].timestamp, 'H:M:ss.l')} -> `) ||
112+
`${dateFormat(data.lines[index].timestamp, 'HH:MM:ss.l')} -> `) ||
113113
'';
114114
return (
115115
(data.lines[index].lineLen && (

0 commit comments

Comments
 (0)