#6656 fix timetable #19

Merged
jorgep merged 2 commits from 6656-fixTimeTable into test 2024-01-17 14:01:06 +00:00
1 changed files with 4 additions and 12 deletions

View File

@ -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

Si los valores van a ser 2 y tan cortos, quizas lo cambiaría a ternario

Si los valores van a ser 2 y tan cortos, quizas lo cambiaría a ternario
}
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
Review

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

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
Review

Se podría usar template string

Se podría usar template string
return value.toString().trim() ? value : "00:00";
}
function cerrar(){