mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-22 14:31:27 +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 (
|
return (
|
||||||
<Edit {...props} title={<UserTitle />}>
|
<Edit {...props} title={<UserTitle />}>
|
||||||
<TabbedForm toolbar={<UserEditToolbar />}>
|
<TabbedForm toolbar={<UserEditToolbar />}>
|
||||||
<FormTab label="resources.users.name" icon={<PersonPinIcon />}>
|
<FormTab
|
||||||
|
label={translate("resources.users.name", { smart_count: 1 })}
|
||||||
|
icon={<PersonPinIcon />}
|
||||||
|
>
|
||||||
<AvatarField
|
<AvatarField
|
||||||
source="avatar_src"
|
source="avatar_src"
|
||||||
sortable={false}
|
sortable={false}
|
||||||
|
|
Loading…
Reference in a new issue