From acaf4d5bfaa4e9497d5cb5e8ae42cc9940c47fb2 Mon Sep 17 00:00:00 2001 From: Santiago Botero <157855016+LePeanutButter@users.noreply.github.com> Date: Tue, 1 Apr 2025 20:40:37 -0500 Subject: [PATCH 1/4] Update ci-cd-testing.yml --- .github/workflows/ci-cd-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd-testing.yml b/.github/workflows/ci-cd-testing.yml index 800b2b7..65b3904 100644 --- a/.github/workflows/ci-cd-testing.yml +++ b/.github/workflows/ci-cd-testing.yml @@ -11,7 +11,7 @@ on: env: AZURE_WEBAPP_NAME: cicero AZURE_WEBAPP_PACKAGE_PATH: '.' - NODE_VERSION: '22.x' + NODE_VERSION: '18.x' jobs: build-and-deploy: From 756007d6b653df32e676655d66e5326b87af0284 Mon Sep 17 00:00:00 2001 From: Santiago Botero <157855016+LePeanutButter@users.noreply.github.com> Date: Tue, 1 Apr 2025 20:40:49 -0500 Subject: [PATCH 2/4] Update ci-cd-production.yml --- .github/workflows/ci-cd-production.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd-production.yml b/.github/workflows/ci-cd-production.yml index a5c8eff..ba87daf 100644 --- a/.github/workflows/ci-cd-production.yml +++ b/.github/workflows/ci-cd-production.yml @@ -11,7 +11,7 @@ on: env: AZURE_WEBAPP_NAME: Eros AZURE_WEBAPP_PACKAGE_PATH: '.' - NODE_VERSION: '22.x' + NODE_VERSION: '18.x' jobs: build-and-deploy: From e8b7be4ab1ae74209be34371f26eb8dd01720ea2 Mon Sep 17 00:00:00 2001 From: Santiago Botero <157855016+LePeanutButter@users.noreply.github.com> Date: Tue, 1 Apr 2025 22:28:18 -0500 Subject: [PATCH 3/4] Update GenerarReservaForm.jsx --- src/components/popup/AddReservaModal/GenerarReservaForm.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/popup/AddReservaModal/GenerarReservaForm.jsx b/src/components/popup/AddReservaModal/GenerarReservaForm.jsx index e37baf2..ef1b28b 100644 --- a/src/components/popup/AddReservaModal/GenerarReservaForm.jsx +++ b/src/components/popup/AddReservaModal/GenerarReservaForm.jsx @@ -76,7 +76,11 @@ const FormGenerarReserva = ({ usuario, onClose , onReservaExitosa }) => { const reservaData = { fechaReserva: fechaReserva.toISOString().split("T")[0], hora: horasDisponibles.find((h) => h.hora === hora).valor, - diaSemana: fechaReserva.toLocaleDateString('es-ES', { weekday: 'long' }).toUpperCase(), + diaSemana: fechaReserva + .toLocaleDateString('es-ES', { weekday: 'long' }) + .toUpperCase() + .normalize('NFD') + .replace(/[\u0300-\u036f]/g, ''), proposito, materia, idSalon, From 248fb8c441f97c2a84bb2ec4b80df241531d9ad1 Mon Sep 17 00:00:00 2001 From: AnderProgramming <158221956+AnderssonProgramming@users.noreply.github.com> Date: Sun, 1 Jun 2025 21:25:32 -0500 Subject: [PATCH 4/4] docs: fix image path- scaffolding --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4273ddc..e1f851b 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ npm install El frontend sigue una arquitectura moderna de React con una clara separación de responsabilidades: -![alt text](image.png) +![alt text](images/image.png) ### Estructura de Componentes