You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Interactions/Modals/RoleMenus/menu-add-role.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ export const Modal = {
123
123
// This is the very first button on the Menu
124
124
MenuButtons.push({
125
125
"type": ComponentType.ActionRow,
126
-
"id": 8,
126
+
"id": 9,
127
127
"components": [newMenuButton]
128
128
});
129
129
}
@@ -168,7 +168,7 @@ export const Modal = {
168
168
// Edit into Menu
169
169
for(leti=0;i<=MenuButtons.length-1;i++){
170
170
// This mess is just so I can pull each updated row out of MenuButtons and into MenuContainer.components, without having an Array where a Component Object should be
Copy file name to clipboardExpand all lines: Interactions/Modals/RoleMenus/menu-edit-button.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ export const Modal = {
84
84
// Edit into Menu
85
85
for(leti=0;i<=MenuButtons.length-1;i++){
86
86
// This mess is just so I can pull each updated row out of MenuButtons and into MenuContainer.components, without having an Array where a Component Object should be
Copy file name to clipboardExpand all lines: Interactions/Modals/RoleMenus/menu-remove-role.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ export const Modal = {
91
91
// This is the very first button on the Menu
92
92
updatedMenuButtons.push({
93
93
"type": ComponentType.ActionRow,
94
-
"id": 8,
94
+
"id": 9,
95
95
"components": [button]
96
96
});
97
97
}
@@ -140,7 +140,7 @@ export const Modal = {
140
140
// Edit into Menu
141
141
for(leti=0;i<=MenuButtons.length-1;i++){
142
142
// This mess is just so I can pull each updated row out of MenuButtons and into MenuContainer.components, without having an Array where a Component Object should be
0 commit comments