We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00fab2e commit a18b133Copy full SHA for a18b133
wled00/data/settings_leds.htm
@@ -271,7 +271,7 @@
271
let dC = 0; // count of digital buses (for parallel I2S)
272
let LTs = d.Sf.querySelectorAll("#mLC select[name^=LT]");
273
LTs.forEach((s,i)=>{
274
- if (i < LTs.length-1) s.disabled = true; // prevent changing type (as we can't update options)
+ s.disabled = (i < LTs.length-1); // prevent changing type (as we can't update options)
275
// is the field a LED type?
276
var n = s.name.substring(2,3); // bus number (0-Z)
277
var t = parseInt(s.value);
0 commit comments