mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Fix duplicate primary email message
Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
parent
9d088dfa5a
commit
a68318a52b
3 changed files with 7 additions and 7 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
4
dist/settings-vue-settings-personal-info.js
vendored
4
dist/settings-vue-settings-personal-info.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue