Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/betaflight/betaflight-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Efimov <gendalf44@yandex.ru>2022-02-24 03:18:49 +0300
committerIvan Efimov <gendalf44@yandex.ru>2022-02-24 03:18:49 +0300
commitce1ac332988ecff50cb3e286745de5f5b414f14e (patch)
tree2e2fa2fde8b3852d7ebcad6d4c4a6c804ec9d54a
parent0e7e47d7748c9f34bf31ac2b356f367ed438f4db (diff)
Firmware flasher fix for the release notes show
-rw-r--r--src/js/tabs/firmware_flasher.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/tabs/firmware_flasher.js b/src/js/tabs/firmware_flasher.js
index 7ee5251a..f796d0f1 100644
--- a/src/js/tabs/firmware_flasher.js
+++ b/src/js/tabs/firmware_flasher.js
@@ -84,7 +84,7 @@ firmware_flasher.initialize = function (callback) {
}
let formattedNotes = summary.notes.replace(/#(\d+)/g, '[#$1](https://github.com/betaflight/betaflight/pull/$1)');
- formattedNotes = marked(formattedNotes);
+ formattedNotes = marked.parse(formattedNotes);
$('div.release_info .notes').html(formattedNotes);
$('div.release_info .notes').find('a').each(function() {
$(this).attr('target', '_blank');