Fix footer links (#1882)

Fix footer links. Before each personal link were redirected to the theme page.
This commit is contained in:
Eduard Heimbuch
2021-12-03 08:50:37 +01:00
committed by GitHub
parent 4aee350c02
commit f7d8636b35
4 changed files with 11 additions and 10 deletions

View File

@@ -97,7 +97,7 @@ const Footer: FC<Props> = ({ me, version, links }) => {
<div className="columns is-size-7">
{me ? (
<FooterSection title={meSectionTile}>
<NavLink to="/me" label={t("footer.user.profile")} testId="footer-user-profile" />
<NavLink to="/me/settings/theme" label={t("footer.user.profile")} testId="footer-user-profile" />
{me?._links?.password && (
<NavLink to="/me/settings/password" label={t("profile.changePasswordNavLink")} />
)}