Skip to content

Commit

Permalink
fix CLI error red (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdCopter authored May 31, 2024
1 parent 1b2648d commit 5175d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/tabs/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ function writeLineToOutput(text) {
return; // suppress output if in building state
}

if (text.startsWith("###ERROR: ")) {
if (text.startsWith("###ERROR")) {
writeToOutput('<span class="error_message">' + text + '</span><br>');
} else {
writeToOutput(text + "<br>");
Expand Down

0 comments on commit 5175d8f

Please sign in to comment.