From b53ca9cac4a55757c766fea8956c821541c32408 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 16 Jan 2024 10:59:02 +0000 Subject: [PATCH] fix(aurora): fixed incorrect decorator (again) --- aurora/configuration/menus/overrides.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurora/configuration/menus/overrides.py b/aurora/configuration/menus/overrides.py index e5bae55..b1f0b06 100644 --- a/aurora/configuration/menus/overrides.py +++ b/aurora/configuration/menus/overrides.py @@ -94,7 +94,7 @@ class Overrides(ui.View): await config.user(self.ctx.author).history_inline_pagesize.clear() await interaction.message.edit(embed=await embed(self.ctx)) - @ui.select(label="Pagesize", options=create_pagesize_options(), row=2) + @ui.select(placeholder="Pagesize", options=create_pagesize_options(), row=2) async def pagesize(self, interaction: Interaction, select: ui.Select,): # pylint: disable=unused-argument if self.ctx.author != interaction.user: await interaction.response.send_message("You cannot change this setting for other users.", ephemeral=True)