match all esp32 types

This commit is contained in:
Will Tatam
2025-11-09 13:24:15 +00:00
parent af8c851cc6
commit c7c379f962

View File

@@ -29,7 +29,7 @@
if (data.arch == "esp8266") {
toggle('rev');
}
const isESP32 = data.arch && data.arch.startsWith('esp32');
const isESP32 = data.arch && data.arch.toLowerCase().startsWith('esp32');
if (isESP32) {
gId('bootloader-section').style.display = 'block';
if (data.bootloaderSHA256) {