Skip to content

Commit

Permalink
🐛 Igualar lineas de tiempo y descripción ya
Browse files Browse the repository at this point in the history
  • Loading branch information
1cgonza committed Dec 13, 2023
1 parent 6b4bf89 commit 95dcf2e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion aplicaciones/www/src/componentes/DescripcionYa.astro
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ const { img, titulo, definicion, archivos, hayDatos } = Astro.props;
const años = Object.keys(respuesta.datos);
const primerAño = +años[0];
const ultimoAño = +años[años.length - 1];
const max = umbral ? Math.max(respuesta.maxNal, +umbral) : respuesta.maxNal;
const max =
respuesta.maxNal > respuesta.unidadMedida ? Math.ceil(respuesta.maxNal / 100) * 100 : respuesta.unidadMedida;

for (const año in respuesta.datos) {
ordenados.push({ año, valor: respuesta.datos[año] });
}
Expand Down

0 comments on commit 95dcf2e

Please sign in to comment.