diff options
author | crupest <crupest@outlook.com> | 2020-06-03 21:47:32 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-03 21:47:32 +0800 |
commit | 1e90a93049cd57098608de72f02bfaabfadd32b6 (patch) | |
tree | dfe592760d8a80e511928829834b1ba6d02527f5 /Timeline/ClientApp/src/about/About.tsx | |
parent | 325a7b930cf197ff0a42042d698849e752243eb3 (diff) | |
download | timeline-1e90a93049cd57098608de72f02bfaabfadd32b6.tar.gz timeline-1e90a93049cd57098608de72f02bfaabfadd32b6.tar.bz2 timeline-1e90a93049cd57098608de72f02bfaabfadd32b6.zip |
fix: Fix #88 .
Diffstat (limited to 'Timeline/ClientApp/src/about/About.tsx')
-rw-r--r-- | Timeline/ClientApp/src/about/About.tsx | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/Timeline/ClientApp/src/about/About.tsx b/Timeline/ClientApp/src/about/About.tsx index 1f8008d3..031c46cb 100644 --- a/Timeline/ClientApp/src/about/About.tsx +++ b/Timeline/ClientApp/src/about/About.tsx @@ -66,7 +66,7 @@ const backendCredits: { icon?: string;
}[] = [
{
- name: 'ASP.Net Core',
+ name: 'ASP.NET Core',
url: 'https://dotnet.microsoft.com/learn/aspnet/what-is-aspnet-core',
},
{ name: 'sqlite', url: 'https://sqlite.org' },
@@ -128,20 +128,11 @@ const About: React.FC = () => { </p>
<p>
<a
- href="https://github.com/crupest/Timeline-React"
- target="_blank"
- rel="noopener noreferrer"
- >
- {t('about.site.frontendRepo')}
- </a>
- </p>
- <p>
- <a
href="https://github.com/crupest/Timeline"
target="_blank"
rel="noopener noreferrer"
>
- {t('about.site.backendRepo')}
+ {t('about.site.repo')}
</a>
</p>
</div>
|