#6656 fix timetable #19
Loading…
Reference in New Issue
No description provided.
Delete Branch "6656-fixTimeTable"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -215,3 +213,1 @@
} else {
return "show";
}
if (!value.trim()) return "hide";
Si los valores van a ser 2 y tan cortos, quizas lo cambiaría a ternario
@ -218,3 +215,4 @@
}
function ifIsEmptyImage(value) {
Lo revisamos porque se podría dejar en una línea.
Ya que construyes un string en la 220, puedes aprovechar a darle un valor por defecto a value que sea in
@ -224,2 +219,2 @@
return "img/" + value + ".svg";
}
if (!value.trim()) return "img/in.svg";
return "img/" + value + ".svg";
Se podría usar template string