Skip to content

Commit 3d3c5f3

Browse files
committed
feat: add password confirmation field and update labels to French in agents schema
1 parent b116f64 commit 3d3c5f3

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

apps/web/src/composables/useAgentsSchema.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ export default function useAgentsSchema() {
1515
"type": "string",
1616
"description": "Mot de passe",
1717
},
18+
"password_confirm": {
19+
"type": "string",
20+
"description": "Confirmation du mot de passe",
21+
},
1822
"email": {
1923
"type": "string",
2024
"description": "Adresse e-mail"
@@ -80,16 +84,16 @@ export default function useAgentsSchema() {
8084
"elements": [
8185
{
8286
"type": "Control",
83-
"label": "Password",
87+
"label": "Mot de passe",
8488
"scope": "#/properties/password",
8589
"options": {
8690
"format": "password"
8791
}
8892
},
8993
{
9094
"type": "Control",
91-
"label": "Password",
92-
"scope": "#/properties/password",
95+
"label": "Confirmation du mot de passe",
96+
"scope": "#/properties/password_confirm",
9397
"options": {
9498
"format": "password"
9599
}

0 commit comments

Comments
 (0)