Skip to content

Commit 8d860ec

Browse files
committed
Added experimental ALPHA_HIDDEN form field type, allowing configurable default/derived values and conditional inclusion in form submissions.
1 parent 77de09e commit 8d860ec

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"@hapi/boom": "^9.1.1",
6565
"@hapi/hapi": "^20.0.1",
6666
"@hapi/inert": "^6.0.3",
67-
"@opencrvs/toolkit": "1.9.2-rc.f1d7235",
67+
"@opencrvs/toolkit": "1.9.2-rc.d14799e",
6868
"@types/chalk": "^2.2.0",
6969
"@types/csv2json": "^1.4.0",
7070
"@types/fhir": "^0.0.30",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ export const child = defineFormPage({
393393
},
394394
{
395395
id: 'child.birthLocationId',
396-
type: FieldType.HIDDEN,
396+
type: FieldType.ALPHA_HIDDEN,
397397
required: false,
398398
label: {
399399
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)