Skip to content

Commit

Permalink
bugfix miniAP doesn't display channel 27
Browse files Browse the repository at this point in the history
  • Loading branch information
nlimper committed Feb 28, 2024
1 parent ebd1adc commit 14e96c7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified ESP32_AP-Flasher/data/www/main.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion ESP32_AP-Flasher/wwwroot/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ window.addEventListener("loadConfig", function () {
$(".logo").innerHTML = data.alias;
this.document.title = data.alias;
}
if (data.C6) {
if (data.C6 == 1) {
var optionToRemove = $("#apcfgchid").querySelector('option[value="27"]');
if (optionToRemove) $("#apcfgchid").removeChild(optionToRemove);
$('#c6Option').style.display = 'block';
Expand Down

0 comments on commit 14e96c7

Please sign in to comment.