Currently in the process of creating a ticket tool that utilizes a select menu for choosing a topic
const row = new MessageActionRow()
.addComponents(
new MessageSelectMenu()
.setCustomId(`select_menu`)
.setPlaceholder('Option')
.setMaxValues(1)
.addOptions([{
label: 'General issues',
description: 'Choose this for any other issues',
value: 'mod_mail',
},
{
label: 'Report bugs',
description: "Found a bug ?",
value: 'bug_report',
}
]),
)
However, some users have encountered an issue with this setup
After making a selection, it becomes locked in
Subsequently, you are unable to select anything else without first choosing a different option
Is there a way to reset the menu after someone has made their selection?
Or revert it back to the placeholder?