mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-17 21:35:33 +03:00
Merge pull request #1938 from mikeller/amend_cli_error_highlighting
Amended error highlighting in CLI.
This commit is contained in:
commit
1bb4a16bd3
1 changed files with 1 additions and 1 deletions
|
@ -355,7 +355,7 @@ function writeLineToOutput(text) {
|
||||||
return; // suppress output if in building state
|
return; // suppress output if in building state
|
||||||
}
|
}
|
||||||
|
|
||||||
if (text.startsWith("###ERROR: ")) {
|
if (text.startsWith("###ERROR")) {
|
||||||
writeToOutput('<span class="error_message">' + text + '</span><br>');
|
writeToOutput('<span class="error_message">' + text + '</span><br>');
|
||||||
} else {
|
} else {
|
||||||
writeToOutput(text + "<br>");
|
writeToOutput(text + "<br>");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue