mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
corregido typo en presupuesto admin
This commit is contained in:
@ -777,7 +777,7 @@ function convertirTiempo(horas){
|
|||||||
// se convierte a formato hh:mm:ss
|
// se convierte a formato hh:mm:ss
|
||||||
const h = Math.floor(seconds / 3600);
|
const h = Math.floor(seconds / 3600);
|
||||||
const minutos = Math.floor((seconds % 3600) / 60);
|
const minutos = Math.floor((seconds % 3600) / 60);
|
||||||
const segundos = round(seconds % 60, 0);
|
const segundos = Math.round(seconds % 60, 0);
|
||||||
return h + ':' + minutos + ':' + segundos;
|
return h + ':' + minutos + ':' + segundos;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
|||||||
Reference in New Issue
Block a user