diff --git a/ready-made/installer.html b/ready-made/installer.html
index dd27d7543..ed8d0bca1 100644
--- a/ready-made/installer.html
+++ b/ready-made/installer.html
@@ -593,11 +593,13 @@
Start the installation:
-
+
-
Start the installation:
+
Installation instructions:
- Disconnect your Raspberry Pi Pico from your computer
@@ -684,8 +686,10 @@
radio.addEventListener("change", () => {
const typeRoot = radio.closest(".type");
const manifestRoot = typeRoot.dataset.manifestRoot;
- const button = typeRoot.querySelector("esp-web-install-button");
- button.manifest = `${manifestRoot}/${radio.value}-manifest.json`;
+ if (manifestRoot) {
+ const button = typeRoot.querySelector("esp-web-install-button");
+ button.manifest = `${manifestRoot}/${radio.value}-manifest.json`;
+ }
typeRoot.querySelectorAll(".info").forEach((info) => {
info.classList.add("hidden");