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 ddd4c0d commit a560db0Copy full SHA for a560db0
wled00/data/settings_um.htm
@@ -120,7 +120,7 @@
120
// WLEDMM make a dropdown for pin variables
121
if (f.includes("pin")) {
122
var n = this.name.replace("[]","").substr(-3);
123
- urows += `<select name="${k}:${f}${a?"[]":""}">`;
+ urows += `<select name="${k}:${f}${a?"[]":""}" style="width:200px;max-width:90%;">`; //WLEDMM width capped. to be moved to css one day
124
for (var j=-1; j<=50; j++) { // all possible pins WLEDMM: hardcoded to 50 as d.max_gpio is not calculated yet here (done in appendGPIOinfo)
125
let foundPin = -1;
126
for (var i=0; i<pins.length; i++) { // check if pin is reserved
0 commit comments