Browse Source

Fix duplicate primary email message

Signed-off-by: Christopher Ng <chrng8@gmail.com>
tags/v24.0.0beta1
Christopher Ng 2 years ago
parent
commit
a68318a52b

+ 4
- 4
apps/settings/src/components/PersonalInfo/EmailSection/Email.vue View File

@@ -194,10 +194,10 @@ export default {
return t('settings', 'Additional email address {index}', { index: this.index + 1 })
},

isNotificationEmail() {
return (this.email === this.activeNotificationEmail)
|| (this.primary && this.activeNotificationEmail === '')
},
isNotificationEmail() {
return (this.email && this.email === this.activeNotificationEmail)
|| (this.primary && this.activeNotificationEmail === '')
},
},

mounted() {

+ 2
- 2
dist/settings-vue-settings-personal-info.js
File diff suppressed because it is too large
View File


+ 1
- 1
dist/settings-vue-settings-personal-info.js.map
File diff suppressed because it is too large
View File


Loading…
Cancel
Save