mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-08 15:54:51 +00:00
Bugfix plural in user tab (#62)
This commit is contained in:
parent
7c9a87bc86
commit
8bdf76f27e
1 changed files with 4 additions and 1 deletions
|
@ -212,7 +212,10 @@ export const UserEdit = props => {
|
|||
return (
|
||||
<Edit {...props} title={<UserTitle />}>
|
||||
<TabbedForm toolbar={<UserEditToolbar />}>
|
||||
<FormTab label="resources.users.name" icon={<PersonPinIcon />}>
|
||||
<FormTab
|
||||
label={translate("resources.users.name", { smart_count: 1 })}
|
||||
icon={<PersonPinIcon />}
|
||||
>
|
||||
<AvatarField
|
||||
source="avatar_src"
|
||||
sortable={false}
|
||||
|
|
Loading…
Reference in a new issue