diff --git a/scm-ui/src/containers/ProfileInfo.js b/scm-ui/src/containers/ProfileInfo.js index 49c79f1fe8..230c50786c 100644 --- a/scm-ui/src/containers/ProfileInfo.js +++ b/scm-ui/src/containers/ProfileInfo.js @@ -1,7 +1,11 @@ // @flow import React from "react"; import type { Me } from "@scm-manager/ui-types"; -import { MailLink, AvatarWrapper, AvatarImage } from "@scm-manager/ui-components"; +import { + MailLink, + AvatarWrapper, + AvatarImage +} from "@scm-manager/ui-components"; import { compose } from "redux"; import { translate } from "react-i18next"; @@ -21,27 +25,39 @@ class ProfileInfo extends React.Component {

- +

- - - - - - - - - - - - + + + + + + + + + + + + + + + +
{t("profile.username")}{me.name}
{t("profile.displayName")}{me.displayName}
{t("profile.mail")} - -
+ {t("profile.username")} + {me.name}
+ {t("profile.displayName")} + {me.displayName}
+ {t("profile.mail")} + + +
+ {t("profile.groups")} + {me.groups.join(", ")}