fix(issues): fixed paraemeter ordering breaking stuff
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 4s
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 4s
This commit is contained in:
parent
8110fe6d3e
commit
e34f5d09fa
1 changed files with 8 additions and 8 deletions
|
@ -43,20 +43,20 @@ class Issues(commands.Cog):
|
||||||
self.passed_info: discord.Interaction = passed_info
|
self.passed_info: discord.Interaction = passed_info
|
||||||
|
|
||||||
@discord.ui.button(label="Bot Bug", style=discord.ButtonStyle.danger, row=0)
|
@discord.ui.button(label="Bot Bug", style=discord.ButtonStyle.danger, row=0)
|
||||||
async def issue_button_bot_bug(self, button: discord.ui.Button, interaction: discord.Interaction):
|
async def issue_button_bot_bug(self, interaction: discord.Interaction, button: discord.ui.Button):
|
||||||
await self.passed_info.response.send_modal(Issues.BotBugModal())
|
await interaction.response.send_modal(Issues.BotBugModal())
|
||||||
|
|
||||||
@discord.ui.button(label="Cog Bug", style=discord.ButtonStyle.danger, row=1)
|
@discord.ui.button(label="Cog Bug", style=discord.ButtonStyle.danger, row=1)
|
||||||
async def issue_button_cog_bug(self, button: discord.ui.Button, interaction: discord.Interaction):
|
async def issue_button_cog_bug(self, interaction: discord.Interaction, button: discord.ui.Button):
|
||||||
await self.passed_info.response.send_modal(Issues.BotBugModal())
|
await interaction.response.send_modal(Issues.BotBugModal())
|
||||||
|
|
||||||
@discord.ui.button(label="Bot Suggestion", style=discord.ButtonStyle.blurple, row=0)
|
@discord.ui.button(label="Bot Suggestion", style=discord.ButtonStyle.blurple, row=0)
|
||||||
async def issue_button_bot_suggestion(self, button: discord.ui.Button, interaction: discord.Interaction):
|
async def issue_button_bot_suggestion(self, interaction: discord.Interaction, button: discord.ui.Button):
|
||||||
await self.passed_info.response.send_modal(Issues.BotBugModal())
|
await interaction.response.send_modal(Issues.BotBugModal())
|
||||||
|
|
||||||
@discord.ui.button(label="Cog Suggestion", style=discord.ButtonStyle.blurple, row=1)
|
@discord.ui.button(label="Cog Suggestion", style=discord.ButtonStyle.blurple, row=1)
|
||||||
async def issue_button_cog_suggestion(self, button: discord.ui.Button, interaction: discord.Interaction):
|
async def issue_button_cog_suggestion(self, interaction: discord.Interaction, button: discord.ui.Button):
|
||||||
await self.passed_info.response.send_modal(Issues.BotBugModal())
|
await interaction.response.send_modal(Issues.BotBugModal())
|
||||||
|
|
||||||
class BotBugModal(discord.ui.Modal, title="Creating issue..."):
|
class BotBugModal(discord.ui.Modal, title="Creating issue..."):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
Loading…
Reference in a new issue