style(analysis): use full month names in variation table

This commit is contained in:
Jose Selesan
2026-08-27 11:16:39 -03:00
parent 88fa05d5b8
commit 873fd63ea4

View File

@@ -20,18 +20,18 @@ type MonthRow = {
};
const MONTH_NAMES = [
"Ene",
"Feb",
"Mar",
"Abr",
"May",
"Jun",
"Jul",
"Ago",
"Sep",
"Oct",
"Nov",
"Dic",
"Enero",
"Febrero",
"Marzo",
"Abril",
"Mayo",
"Junio",
"Julio",
"Agosto",
"Septiembre",
"Octubre",
"Noviembre",
"Diciembre",
];
function formatMonth(monthKey: string): string {