Skip to content

Commit 86ef184

Browse files
authored
fix(#202): 关于页面链接地址大写导致无法访问
GitHub仓库URL中的项目名称统一改为小写,以保持一致性并避免潜在的URL大小写敏感问题。
1 parent 0033b28 commit 86ef184

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/app/core/setting/about/setting-about.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@ export function SettingAbout({id, icon}: {id: string, icon?: React.ReactNode}) {
1111

1212
const items = [
1313
{
14-
url: "https://github.com/codexu/NoteGen",
14+
url: "https://github.com/codexu/note-gen",
1515
title: t('items.github.title'),
1616
icon: <Github className="size-4" />,
1717
buttonName: t('items.github.buttonName')
1818
},
1919
{
20-
url: "https://github.com/codexu/NoteGen/releases",
20+
url: "https://github.com/codexu/note-gen/releases",
2121
title: t('items.releases.title'),
2222
icon: <DownloadIcon className="size-4" />,
2323
buttonName: t('items.releases.buttonName')
2424
},
2525
{
26-
url: "https://github.com/codexu/NoteGen/issues",
26+
url: "https://github.com/codexu/note-gen/issues",
2727
title: t('items.issues.title'),
2828
icon: <Bug className="size-4" />,
2929
buttonName: t('items.issues.buttonName')
3030
},
3131
{
32-
url: "https://github.com/codexu/NoteGen/discussions",
32+
url: "https://github.com/codexu/note-gen/discussions",
3333
title: t('items.discussions.title'),
3434
icon: <MessageSquare className="size-4" />,
3535
buttonName: t('items.discussions.buttonName')
@@ -59,4 +59,4 @@ function AboutItem({url, title, icon, buttonName}: {url: string, title: string,
5959
</div>
6060
<Button variant="outline" onClick={openInBrowser}>{buttonName}</Button>
6161
</SettingRow>
62-
}
62+
}

0 commit comments

Comments
 (0)