Show displayname as title for user

Change-Id: I0ba8e2265e5b8e1fe392f56052e96e0243cd3eb6
pull/40/head 0.2.1
Manuel Stahl 4 years ago
parent d812cff5fc
commit 1e6e526e3c

@ -135,8 +135,17 @@ export const UserCreate = props => (
</Create>
);
const UserTitle = ({ record }) => {
const translate = useTranslate();
return (
<span>
{translate("resources.users.name")}{" "}
{record ? `"${record.displayname}"` : ""}
</span>
);
};
export const UserEdit = props => (
<Edit {...props}>
<Edit {...props} title={<UserTitle />}>
<TabbedForm toolbar={<UserEditToolbar />}>
<FormTab label="resources.users.name" icon={<PersonPinIcon />}>
<TextInput source="id" disabled />

Loading…
Cancel
Save