From 20a717d351d89262a86d4c7609627183b00468bc Mon Sep 17 00:00:00 2001 From: Lars Kiesow Date: Tue, 2 Jul 2024 22:38:12 +0200 Subject: [PATCH] Replace title attribute in footer elements with tooltips The footer still used `title` attributes instead of the tooltips we use everywhere else. This patch fixes that. --- src/components/Footer.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 33ef6dc0b5..5968598854 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -7,6 +7,7 @@ import { hasAccess } from "../utils/utils"; import { useAppSelector } from "../store"; import { Link } from "react-router-dom"; import { useTranslation } from "react-i18next"; +import { Tooltip } from "./shared/Tooltip"; /** * Component that renders the footer @@ -29,14 +30,18 @@ const Footer: React.FC = () => {