summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/models/rfcProps.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/models/rfcProps.js b/src/models/rfcProps.js
index 937391f5..122736f2 100644
--- a/src/models/rfcProps.js
+++ b/src/models/rfcProps.js
@@ -256,10 +256,13 @@ const properties = {
},
gender: {
readableName: t('contacts', 'Gender'),
- force: 'select',
+ defaultValue: {
+ // default to Female 🙋
+ value: ['F']
+ },
options: [
- { id: 'F', name: t('contacts', 'Female'), xadd: 'X-WAB-GENDER:1' }, // Female first 🙋, TODO: make X-WAB-GENDER print in VCARD as well for MS compatibility
- { id: 'M', name: t('contacts', 'Male'), xadd: 'X-WAB-GENDER:2' }, // TODO: make X-WAB-GENDER print in VCARD as well for MS compatibility
+ { id: 'F', name: t('contacts', 'Female') },
+ { id: 'M', name: t('contacts', 'Male') },
{ id: 'O', name: t('contacts', 'Other') }
]
}