Flasher tab: fix wiki button (#3198)

Flashed tab: fix wiki button
10.9-maintenance
Ivan Efimov 2023-01-04 19:20:38 -06:00 committed by GitHub
parent 0a8701a920
commit 6d08e45f14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -315,10 +315,10 @@ class GuiControl {
this.switchery();
if (CONFIGURATOR.connectionValid) {
// Build link to in-use CF version documentation
const documentationButton = $('div#content #button-documentation');
documentationButton.html("Wiki");
const documentationButton = $('div#content #button-documentation');
documentationButton.html("Wiki");
if (GUI.active_tab !== 'firmware_flasher') { // hack till we have a nice solution for individual wiki URLs for each page
documentationButton.attr("href", "https://github.com/betaflight/betaflight/wiki");
}