misc(moderation): revert inline fields in history command
Some checks failed
Pylint / Pylint (3.10) (push) Failing after 54s

This commit is contained in:
Seaswimmer 2023-12-14 16:57:00 -05:00
parent b435441356
commit e411e4b942
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -932,7 +932,7 @@ class Moderation(commands.Cog):
if bool(case['resolved']):
field_value += "\n**Resolved:** True"
embed.add_field(name=field_name, value=field_value, inline=True)
embed.add_field(name=field_name, value=field_value, inline=False)
await interaction.followup.send(embed=embed, ephemeral=ephemeral)