mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
fix(settings): fix "Set user manager" label in users settings
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
This commit is contained in:
parent
4b39a27caf
commit
a428814c93
1 changed files with 5 additions and 2 deletions
|
|
@ -394,12 +394,15 @@ export default {
|
|||
editedDisplayName: this.user.displayname,
|
||||
editedPassword: '',
|
||||
editedMail: this.user.email ?? '',
|
||||
// TRANSLATORS This string describes a manager in the context of an organization
|
||||
managerLabel: t('settings', 'Set user manager'),
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
managerLabel() {
|
||||
// TRANSLATORS This string describes a manager in the context of an organization
|
||||
return t('settings', 'Set user manager')
|
||||
},
|
||||
|
||||
isObfuscated() {
|
||||
return isObfuscated(this.user)
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue