Fix the dropdown having the wrong page value
This commit is contained in:
parent
a71b33d879
commit
c115cd92a1
1 changed files with 3 additions and 1 deletions
|
@ -113,6 +113,8 @@ export default class InventoryHelper {
|
|||
.setStyle(ButtonStyle.Primary)
|
||||
.setDisabled(page + 1 == pages.length));
|
||||
|
||||
let pageNum = 0;
|
||||
|
||||
const row2 = new ActionRowBuilder<StringSelectMenuBuilder>()
|
||||
.addComponents(
|
||||
new StringSelectMenuBuilder()
|
||||
|
@ -123,7 +125,7 @@ export default class InventoryHelper {
|
|||
.setLabel(`${x.name} (${x.seriesSubpage + 1})`.substring(0, 100))
|
||||
.setDescription("Quick navigate to page...")
|
||||
.setDefault(currentPage.id == x.id)
|
||||
.setValue(x.id.toString()))));
|
||||
.setValue((pageNum++).toString()))));
|
||||
|
||||
const buffer = await ImageHelper.GenerateCardImageGrid(currentPage.cards.map(x => ({ id: x.id, path: x.path })));
|
||||
const image = new AttachmentBuilder(buffer, { name: "page.png" });
|
||||
|
|
Loading…
Reference in a new issue