mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-17 13:25:24 +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
|
||||
}
|
||||
|
||||
if (text.startsWith("###ERROR: ")) {
|
||||
if (text.startsWith("###ERROR")) {
|
||||
writeToOutput('<span class="error_message">' + text + '</span><br>');
|
||||
} else {
|
||||
writeToOutput(text + "<br>");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue