Skip to content

Commit 42d08fe

Browse files
committed
Added experimental ALPHA_HIDDEN form field type, allowing configurable default/derived values and conditional inclusion in form submissions.
1 parent 17d9c10 commit 42d08fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/form/v2/birth/forms/pages/child.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ export const child = defineFormPage({
409409
},
410410
{
411411
id: 'child.birthLocationId',
412-
type: FieldType.HIDDEN,
412+
type: FieldType.ALPHA_HIDDEN,
413413
required: false,
414414
label: {
415415
defaultMessage: 'Health Institution',

src/form/v2/death/forms/pages/eventDetails.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ export const eventDetails = defineFormPage({
367367
},
368368
{
369369
id: 'eventDetails.deathLocationId',
370-
type: FieldType.HIDDEN,
370+
type: FieldType.ALPHA_HIDDEN,
371371
required: false,
372372
label: {
373373
defaultMessage: 'Health Institution',

0 commit comments

Comments
 (0)