From b225c2dd3bb4b21430675319e69a64ddd295e0fe Mon Sep 17 00:00:00 2001 From: Komorebi <110453675+KomoriDev@users.noreply.github.com> Date: Wed, 4 Oct 2023 18:20:06 +0800 Subject: [PATCH] =?UTF-8?q?:memo:=20Docs:=20=E4=BF=AE=E6=94=B9=E5=95=86?= =?UTF-8?q?=E5=BA=97=E5=8F=91=E5=B8=83=E7=9A=84=E8=B7=B3=E8=BD=AC=E9=93=BE?= =?UTF-8?q?=E6=8E=A5=20(#2387)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Ju4tCode <42488585+yanyongyu@users.noreply.github.com> --- website/src/components/Store/Content/Adapter.tsx | 2 +- website/src/components/Store/Content/Bot.tsx | 2 +- website/src/components/Store/Content/Plugin.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/website/src/components/Store/Content/Adapter.tsx b/website/src/components/Store/Content/Adapter.tsx index d56430de..5d1c938b 100644 --- a/website/src/components/Store/Content/Adapter.tsx +++ b/website/src/components/Store/Content/Adapter.tsx @@ -71,7 +71,7 @@ export default function AdapterPage(): JSX.Element { onClick: () => { // TODO: open adapter release modal 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" ); }, }; diff --git a/website/src/components/Store/Content/Bot.tsx b/website/src/components/Store/Content/Bot.tsx index 5324f09e..a238861e 100644 --- a/website/src/components/Store/Content/Bot.tsx +++ b/website/src/components/Store/Content/Bot.tsx @@ -71,7 +71,7 @@ export default function PluginPage(): JSX.Element { onClick: () => { // TODO: open bot release modal 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" ); }, }; diff --git a/website/src/components/Store/Content/Plugin.tsx b/website/src/components/Store/Content/Plugin.tsx index d535fb53..607dd2f7 100644 --- a/website/src/components/Store/Content/Plugin.tsx +++ b/website/src/components/Store/Content/Plugin.tsx @@ -71,7 +71,7 @@ export default function PluginPage(): JSX.Element { onClick: () => { // TODO: open plugin release modal 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" ); }, };