Skip to content

Commit

Permalink
Update board wiki URL
Browse files Browse the repository at this point in the history
  • Loading branch information
haslinghuis committed Mar 26, 2024
1 parent 726f6f0 commit f1658b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/tabs/firmware_flasher.js
Original file line number Diff line number Diff line change
Expand Up @@ -993,8 +993,8 @@ firmware_flasher.initialize = function (callback) {
const targetSupportInfo = $('#targetSupportInfoUrl');

targetSupportInfo.on('click', function() {
let urlSupport = 'https://betaflight.com/docs/wiki/boards/missing'; // general board missing
const urlBoard = `https://betaflight.com/docs/wiki/boards/${self.selectedBoard}`; // board description
let urlSupport = 'https://betaflight.com/docs/wiki/boards/archive/missing'; // general board missing
const urlBoard = `https://betaflight.com/docs/wiki/boards/current/${self.selectedBoard}`; // board description
if (urlExists(urlBoard)) {
urlSupport = urlBoard;
}
Expand Down

0 comments on commit f1658b9

Please sign in to comment.