Skip to content

Commit

Permalink
add FILE input
Browse files Browse the repository at this point in the history
  • Loading branch information
rikukissa committed Dec 18, 2024
1 parent 180ea29 commit 04ea6f6
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions src/form/tennis-club-membership.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,17 +90,27 @@ const TENNIS_CLUB_FORM = defineForm({
description: 'This is the label for the field',
id: 'event.tennis-club-membership.action.declare.form.section.who.field.dob.label'
}
},
{
id: 'applicant.image',
type: 'FILE',
required: false,
label: {
defaultMessage: "Applicant's profile picture",
description: 'This is the label for the field',
id: 'event.tennis-club-membership.action.declare.form.section.who.field.image.label'
}
},
{
id: 'applicant.image.label',
type: 'TEXT',
required: false,
label: {
defaultMessage: "Applicant's profile picture description",
description: 'This is the label for the field',
id: 'event.tennis-club-membership.action.declare.form.section.who.field.image.label'
}
}
// {
// id: 'applicant.image',
// type: 'FILE',
// required: false,
// label: {
// defaultMessage: "Applicant's profile picture",
// description: 'This is the label for the field',
// id: 'event.tennis-club-membership.action.declare.form.section.who.field.image.label'
// }
// }
]
},
{
Expand Down

0 comments on commit 04ea6f6

Please sign in to comment.