Skip to content

Commit

Permalink
Release hotfix 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
polosson committed Dec 17, 2024
1 parent ebef89e commit 5711412
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Tous les changements notables sur le projet sont documentés dans ce fichier.

Ce projet adhère au principe du [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.0.3 (2024-12-18)

- Rétablit le champ `e-mail` dans le formulaire de création / modification de bénéficiaire.

## 1.0.2 (2024-12-10)

- Corrige l'étape 3 de l'assistant d'installation.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.2
1.0.3
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,13 @@ const BeneficiaryEditForm = defineComponent({
v-model={data.phone}
error={errors?.phone}
/>
<FormField
label="email"
type="email"
autocomplete="off"
v-model={data.email}
error={errors?.email}
/>
<FormField
label="street"
autocomplete="off"
Expand Down

0 comments on commit 5711412

Please sign in to comment.