Merge pull request #31347 from nextcloud/fix/31164/duplicate-email-message

This commit is contained in:
Pytal 2022-03-01 18:15:23 -08:00 committed by GitHub
commit 83ccfb63a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

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() {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long