Clarify meaning of icons by adding title in sources view

This commit is contained in:
Florian Scholdei
2020-10-05 15:57:41 +02:00
parent 7e37178fc5
commit 68a6d09c14
5 changed files with 21 additions and 16 deletions

View File

@@ -86,7 +86,7 @@ const FileLink: FC<Props> = ({ baseUrl, file, children }) => {
return <Link to={link}>{children}</Link>;
} else {
return (
<Tooltip location="top" message={t("sources.fileTree.subRepository") + "\n" + link}>
<Tooltip location="top" message={t("sources.fileTree.subRepository") + ": \n" + link}>
{children}
</Tooltip>
);