Rename contraception option 'unprotected' in 'none'
This commit is contained in:
@@ -44,7 +44,7 @@ export const sex = {
|
|||||||
ring: 'Ring',
|
ring: 'Ring',
|
||||||
implant: 'Implant',
|
implant: 'Implant',
|
||||||
diaphragm: 'Diaphragm',
|
diaphragm: 'Diaphragm',
|
||||||
unprotected: 'Unprotected',
|
none: 'None',
|
||||||
other: 'Other',
|
other: 'Other',
|
||||||
activityExplainer: 'Were you sexually active today?',
|
activityExplainer: 'Were you sexually active today?',
|
||||||
contraceptiveExplainer: 'Did you use contraceptives?'
|
contraceptiveExplainer: 'Did you use contraceptives?'
|
||||||
|
|||||||
@@ -41,8 +41,8 @@ const contraceptiveBoxes = [{
|
|||||||
label: labels.diaphragm,
|
label: labels.diaphragm,
|
||||||
stateKey: 'diaphragm'
|
stateKey: 'diaphragm'
|
||||||
}, {
|
}, {
|
||||||
label: labels.unprotected,
|
label: labels.none,
|
||||||
stateKey: 'unprotected'
|
stateKey: 'none'
|
||||||
}, {
|
}, {
|
||||||
label: labels.other,
|
label: labels.other,
|
||||||
stateKey: 'other'
|
stateKey: 'other'
|
||||||
|
|||||||
+1
-1
@@ -68,7 +68,7 @@ const SexSchema = {
|
|||||||
ring: { type: 'bool', optional: true },
|
ring: { type: 'bool', optional: true },
|
||||||
implant: { type: 'bool', optional: true },
|
implant: { type: 'bool', optional: true },
|
||||||
diaphragm: { type: 'bool', optional: true },
|
diaphragm: { type: 'bool', optional: true },
|
||||||
unprotected: { type: 'bool', optional: true },
|
none: { type: 'bool', optional: true },
|
||||||
other: { type: 'bool', optional: true },
|
other: { type: 'bool', optional: true },
|
||||||
note: { type: 'string', optional: true }
|
note: { type: 'string', optional: true }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user