From ce77a96cf62e07b466684f223c49c232c81a5d3e Mon Sep 17 00:00:00 2001 From: ProgramRipper Date: Tue, 1 Jul 2025 22:27:22 +0800 Subject: [PATCH] =?UTF-8?q?:memo:=20Docs:=20=E4=BF=AE=E5=A4=8D=E6=88=90?= =?UTF-8?q?=E5=91=98=E6=8F=90=E4=BA=A4=20issue=20=E6=97=B6=E4=B8=8D?= =?UTF-8?q?=E9=81=B5=E5=AE=88=E8=A1=A8=E5=8D=95=20(#3558)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- website/src/components/Form/Adapter.tsx | 3 --- website/src/components/Form/Bot.tsx | 3 --- website/src/components/Form/Plugin.tsx | 3 --- 3 files changed, 9 deletions(-) diff --git a/website/src/components/Form/Adapter.tsx b/website/src/components/Form/Adapter.tsx index 959d6276..c5b32338 100644 --- a/website/src/components/Form/Adapter.tsx +++ b/website/src/components/Form/Adapter.tsx @@ -35,9 +35,6 @@ export default function AdapterForm(): React.ReactNode { const handleSubmit = (result: Record) => { window.open( `https://github.com/nonebot/nonebot2/issues/new?${new URLSearchParams({ - assignees: "", - labels: "Adapter", - projects: "", template: "adapter_publish.yml", title: `Adapter: ${result.name}`, ...result, diff --git a/website/src/components/Form/Bot.tsx b/website/src/components/Form/Bot.tsx index ad231bd4..6ba4780b 100644 --- a/website/src/components/Form/Bot.tsx +++ b/website/src/components/Form/Bot.tsx @@ -29,9 +29,6 @@ export default function BotForm(): React.ReactNode { const handleSubmit = (result: Record) => { window.open( `https://github.com/nonebot/nonebot2/issues/new?${new URLSearchParams({ - assignees: "", - labels: "Bot", - projects: "", template: "bot_publish.yml", title: `Bot: ${result.name}`, ...result, diff --git a/website/src/components/Form/Plugin.tsx b/website/src/components/Form/Plugin.tsx index 33e6b653..c5e531f3 100644 --- a/website/src/components/Form/Plugin.tsx +++ b/website/src/components/Form/Plugin.tsx @@ -21,9 +21,6 @@ export default function PluginForm(): React.ReactNode { const handleSubmit = (result: Record) => { window.open( `https://github.com/nonebot/nonebot2/issues/new?${new URLSearchParams({ - assignees: "", - labels: "Plugin", - projects: "", template: "plugin_publish.yml", title: `Plugin: ${result.pypi}`, ...result,