Clarify that the email is always shared within the instance
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
adb5a80674
commit
127cfeee90
|
@ -27,8 +27,8 @@
|
||||||
this._scopes = [
|
this._scopes = [
|
||||||
{
|
{
|
||||||
name: 'private',
|
name: 'private',
|
||||||
displayName: (this.field === 'avatar' || this.field === 'displayname') ? t('settings', 'Local') : t('settings', 'Private'),
|
displayName: (this.field === 'avatar' || this.field === 'displayname' || this.field === 'email') ? t('settings', 'Local') : t('settings', 'Private'),
|
||||||
tooltip: (this.field === 'avatar' || this.field === 'displayname') ? t('settings', 'Only visible to local users') : t('settings', 'Only visible to you'),
|
tooltip: (this.field === 'avatar' || this.field === 'displayname' || this.field === 'email') ? t('settings', 'Only visible to local users') : t('settings', 'Only visible to you'),
|
||||||
iconClass: 'icon-password',
|
iconClass: 'icon-password',
|
||||||
active: false
|
active: false
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue