Skip to content

Commit

Permalink
Capitalización de los criterios de ordenamiento
Browse files Browse the repository at this point in the history
  • Loading branch information
ddi4z committed Sep 1, 2024
1 parent d7d8aa9 commit ea8b7b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/planear/criterios/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function InputRadio({ opcion, handleSeleccionDeCriterio } : { opcion:string , ha
value={opcion}
onChange={handleSeleccionDeCriterio}
/>
<label className="text-lg ml-2" htmlFor={opcion}>{opcion}</label>
<label className="text-lg ml-2" htmlFor={opcion}>{opcion.charAt(0).toUpperCase() + opcion.slice(1)}</label>
</div>
);
}

0 comments on commit ea8b7b8

Please sign in to comment.