From 941415b24d1d6cfee98dc898403a351c34f274df Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Tue, 23 Dec 2025 02:32:47 +0100 Subject: [PATCH] fix reference error in pxmagic.htm ``index`` was undefined --- wled00/data/pxmagic/pxmagic.htm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/data/pxmagic/pxmagic.htm b/wled00/data/pxmagic/pxmagic.htm index 77e7963c..de6c5a01 100644 --- a/wled00/data/pxmagic/pxmagic.htm +++ b/wled00/data/pxmagic/pxmagic.htm @@ -1053,7 +1053,7 @@ select.innerHTML = ""; - options.forEach(({ text, value }) => { + options.forEach(({ text, value }, index) => { const option = new Option(text, value); if (index === 0) {