Fixed avatar file paths for the Subversion- and Git-Plugin

This commit is contained in:
Philipp Czora
2018-09-12 10:03:29 +02:00
parent 78f19ecfa3
commit de5dc77cec
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ type Props = {
class SvnAvatar extends React.Component<Props> {
render() {
return <Image src="/scm/images/svn-logo.gif" alt="Subversion Logo" />;
return <Image src="/images/svn-logo.gif" alt="Subversion Logo" />;
}
}