1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 08:15:22 +03:00

Amended error highlighting in CLI.

This commit is contained in:
mikeller 2020-03-24 01:32:57 +13:00
parent 6d1a4fd1d0
commit 3f8f9ec407

View file

@ -355,7 +355,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>");