📝 Docs: 修改商店发布的跳转链接 (#2387)

Co-authored-by: Ju4tCode <42488585+yanyongyu@users.noreply.github.com>
This commit is contained in:
Komorebi 2023-10-04 18:20:06 +08:00 committed by GitHub
parent 2a2e357513
commit b225c2dd3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ export default function AdapterPage(): JSX.Element {
onClick: () => { onClick: () => {
// TODO: open adapter release modal // TODO: open adapter release modal
window.open( window.open(
"https://github.com/nonebot/nonebot2/issues/new?template=adapter_publish.yml" "https://github.com/nonebot/nonebot2/issues/new?template=adapter_publish.yml&title=Adapter%3A+%7Bname%7D&labels=Adapter"
); );
}, },
}; };

View File

@ -71,7 +71,7 @@ export default function PluginPage(): JSX.Element {
onClick: () => { onClick: () => {
// TODO: open bot release modal // TODO: open bot release modal
window.open( window.open(
"https://github.com/nonebot/nonebot2/issues/new?template=bot_publish.yml" "https://github.com/nonebot/nonebot2/issues/new?template=bot_publish.yml&title=Bot%3A+%7Bname%7D&labels=Bot"
); );
}, },
}; };

View File

@ -71,7 +71,7 @@ export default function PluginPage(): JSX.Element {
onClick: () => { onClick: () => {
// TODO: open plugin release modal // TODO: open plugin release modal
window.open( window.open(
"https://github.com/nonebot/nonebot2/issues/new?template=plugin_publish.yml" "https://github.com/nonebot/nonebot2/issues/new?template=plugin_publish.yml&title=Plugin%3A+%7Bname%7D&labels=Plugin"
); );
}, },
}; };