Fixed Pushbutton inverted not selectable

This commit is contained in:
Aircoookie 2021-06-02 00:22:57 +02:00
parent 7019ddb165
commit dfe065ef82
3 changed files with 3 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "wled",
"version": "0.11.1",
"version": "0.12.1-b1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -283,7 +283,7 @@ Reverse (rotated 180°): <input type="checkbox" name="CV${i}">
c += `<select name="${be}">`
c += `<option value="0" ${t==0?"selected":""}>Disabled</option>`;
c += `<option value="2" ${t==2?"selected":""}>Pushbutton</option>`;
c += `<option value="2" ${t==3?"selected":""}>Push inverted</option>`;
c += `<option value="3" ${t==3?"selected":""}>Push inverted</option>`;
c += `<option value="4" ${t==4?"selected":""}>Switch</option>`;
c += `<option value="5" ${t==4?"selected":""}>Switch inverted</option>`;
c += `<option value="6" ${t==6?"selected":""}>Touch</option>`;

File diff suppressed because one or more lines are too long