From 9fd0d8e080408f8c2a16d55110c6aa5c229f06cf Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Wed, 10 Jun 2020 11:16:01 +0200 Subject: [PATCH] simplify rendering of labels --- .../src/repos/components/changesets/ContributorTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scm-ui/ui-webapp/src/repos/components/changesets/ContributorTable.tsx b/scm-ui/ui-webapp/src/repos/components/changesets/ContributorTable.tsx index cd25900cbf..204d50d913 100644 --- a/scm-ui/ui-webapp/src/repos/components/changesets/ContributorTable.tsx +++ b/scm-ui/ui-webapp/src/repos/components/changesets/ContributorTable.tsx @@ -87,14 +87,14 @@ const ContributorTable: FC = ({ changeset }) => { return ( - {t("changeset.contributor.type.author") + ":"} + {t("changeset.contributor.type.author")}: {getContributorsByType().map(contributor => ( - {t("changeset.contributor.type." + contributor.type) + ":"} + {t("changeset.contributor.type." + contributor.type)}:
{contributor.persons.map(person => (