Skip to content

Commit d358b1b

Browse files
Merge pull request #15 from AnderssonProgramming/release
Release
2 parents 02dba62 + 248fb8c commit d358b1b

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/ci-cd-production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
env:
1212
AZURE_WEBAPP_NAME: Eros
1313
AZURE_WEBAPP_PACKAGE_PATH: '.'
14-
NODE_VERSION: '22.x'
14+
NODE_VERSION: '18.x'
1515

1616
jobs:
1717
build-and-deploy:

.github/workflows/ci-cd-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
env:
1212
AZURE_WEBAPP_NAME: cicero
1313
AZURE_WEBAPP_PACKAGE_PATH: '.'
14-
NODE_VERSION: '22.x'
14+
NODE_VERSION: '18.x'
1515

1616
jobs:
1717
build-and-deploy:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ npm install
8484

8585
El frontend sigue una arquitectura moderna de React con una clara separación de responsabilidades:
8686

87-
![alt text](image.png)
87+
![alt text](images/image.png)
8888

8989
### Estructura de Componentes
9090

src/components/popup/AddReservaModal/GenerarReservaForm.jsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,11 @@ const FormGenerarReserva = ({ usuario, onClose , onReservaExitosa }) => {
7676
const reservaData = {
7777
fechaReserva: fechaReserva.toISOString().split("T")[0],
7878
hora: horasDisponibles.find((h) => h.hora === hora).valor,
79-
diaSemana: fechaReserva.toLocaleDateString('es-ES', { weekday: 'long' }).toUpperCase(),
79+
diaSemana: fechaReserva
80+
.toLocaleDateString('es-ES', { weekday: 'long' })
81+
.toUpperCase()
82+
.normalize('NFD')
83+
.replace(/[\u0300-\u036f]/g, ''),
8084
proposito,
8185
materia,
8286
idSalon,

0 commit comments

Comments
 (0)