summaryrefslogtreecommitdiffstats
path: root/src/models
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-03-06 09:32:20 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-03-06 09:32:20 +0100
commit55a30db2e75c416c1139ee938eaea18c70bb0807 (patch)
tree0563d8d2a08629535c5eb1c007f447827ab58aa4 /src/models
parentb2f7cf1606b8b8f87dbf430f694e559de5a12ef8 (diff)
Fix gender select
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/models')
-rw-r--r--src/models/rfcProps.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/models/rfcProps.js b/src/models/rfcProps.js
index 7daf6f12..0d06d88b 100644
--- a/src/models/rfcProps.js
+++ b/src/models/rfcProps.js
@@ -278,12 +278,15 @@ const properties = component => ({
readableName: t('contacts', 'Gender'),
defaultValue: {
// default to Female 🙋
- value: ['F']
+ value: 'F'
},
+ force: 'select',
options: [
{ id: 'F', name: t('contacts', 'Female') },
{ id: 'M', name: t('contacts', 'Male') },
- { id: 'O', name: t('contacts', 'Other') }
+ { id: 'O', name: t('contacts', 'Other') },
+ { id: 'N', name: t('contacts', 'None') },
+ { id: 'U', name: t('contacts', 'Unknown') }
]
}
})