summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/models/rfcProps.js9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/models/rfcProps.js b/src/models/rfcProps.js
index 122736f2..937391f5 100644
--- a/src/models/rfcProps.js
+++ b/src/models/rfcProps.js
@@ -256,13 +256,10 @@ const properties = {
},
gender: {
readableName: t('contacts', 'Gender'),
- defaultValue: {
- // default to Female 🙋
- value: ['F']
- },
+ force: 'select',
options: [
- { id: 'F', name: t('contacts', 'Female') },
- { id: 'M', name: t('contacts', 'Male') },
+ { 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: 'O', name: t('contacts', 'Other') }
]
}