📝 Docs: 修复成员提交 issue 时不遵守表单 (#3558)

This commit is contained in:
ProgramRipper
2025-07-01 22:27:22 +08:00
committed by GitHub
parent 5fa40ebb1a
commit ce77a96cf6
3 changed files with 0 additions and 9 deletions

View File

@ -35,9 +35,6 @@ export default function AdapterForm(): React.ReactNode {
const handleSubmit = (result: Record<string, string>) => {
window.open(
`https://github.com/nonebot/nonebot2/issues/new?${new URLSearchParams({
assignees: "",
labels: "Adapter",
projects: "",
template: "adapter_publish.yml",
title: `Adapter: ${result.name}`,
...result,

View File

@ -29,9 +29,6 @@ export default function BotForm(): React.ReactNode {
const handleSubmit = (result: Record<string, string>) => {
window.open(
`https://github.com/nonebot/nonebot2/issues/new?${new URLSearchParams({
assignees: "",
labels: "Bot",
projects: "",
template: "bot_publish.yml",
title: `Bot: ${result.name}`,
...result,

View File

@ -21,9 +21,6 @@ export default function PluginForm(): React.ReactNode {
const handleSubmit = (result: Record<string, string>) => {
window.open(
`https://github.com/nonebot/nonebot2/issues/new?${new URLSearchParams({
assignees: "",
labels: "Plugin",
projects: "",
template: "plugin_publish.yml",
title: `Plugin: ${result.pypi}`,
...result,