Skip to content

Commit b5ba885

Browse files
committed
Fix code swallowing
1 parent a51c739 commit b5ba885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export let parseCompilerLogOutput = (content: string, separator: string) => {
184184
tag: undefined,
185185
content: []
186186
})
187-
} else if (/^ [0-9]+ /.test(line)) {
187+
} else if (/^ +[0-9]+ /.test(line)) {
188188
// code display. Swallow
189189
} else if (line.startsWith(' ')) {
190190
parsedDiagnostics[parsedDiagnostics.length - 1].content.push(line)

0 commit comments

Comments
 (0)