remove brackets

This commit is contained in:
Maren Süwer
2019-01-11 12:08:19 +01:00
parent 28ac14f5f9
commit 329241f29d

View File

@@ -108,7 +108,7 @@ class SingleGroup extends React.Component<Props> {
<Section label={t("single-group.navigation-label")}>
<NavLink
to={`${url}`}
icon={"fas fa-info-circle"}
icon="fas fa-info-circle"
label={t("single-group.information-label")}
/>
</Section>
@@ -118,7 +118,11 @@ class SingleGroup extends React.Component<Props> {
deleteGroup={this.deleteGroup}
/>
<EditGroupNavLink group={group} editUrl={`${url}/edit`} />
<NavLink to="/groups" icon={"fas fa-undo-alt"} label={t("single-group.back-label")} />
<NavLink
to="/groups"
icon="fas fa-undo-alt"
label={t("single-group.back-label")}
/>
</Section>
</Navigation>
</div>