#6656 fix timetable #19
|
@ -210,23 +210,15 @@ function printErrores(errores) {
|
|||
}
|
||||
|
||||
function ifIsEmpty(value) {
|
||||
if (value.trim().length === 0) {
|
||||
return "hide";
|
||||
} else {
|
||||
return "show";
|
||||
}
|
||||
return value.trim() ? "show" : "hide";
|
||||
jorgep marked this conversation as resolved
Outdated
|
||||
}
|
||||
|
||||
function ifIsEmptyImage(value) {
|
||||
if (value.trim().length === 0) {
|
||||
return "img/in.svg";
|
||||
} else {
|
||||
return "img/" + value + ".svg";
|
||||
}
|
||||
return value.trim() ? `img/${value}.svg` :"img/in.svg";
|
||||
}
|
||||
jorgep marked this conversation as resolved
jsegarra
commented
Lo revisamos porque se podría dejar en una línea. 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
|
||||
|
||||
function ifIsEmptyText(value = 0) {
|
||||
return value;
|
||||
function ifIsEmptyText(value) {
|
||||
jorgep marked this conversation as resolved
jsegarra
commented
Se podría usar template string Se podría usar template string
|
||||
return value.toString().trim() ? value : "00:00";
|
||||
}
|
||||
|
||||
function cerrar(){
|
||||
|
|
Loading…
Reference in New Issue
Si los valores van a ser 2 y tan cortos, quizas lo cambiaría a ternario