Enable vertical scrolling in /buttons Closes #3012
| @@ -2091,7 +2091,7 @@ async function buttonsCallback(args, text) { | ||
| 2091 | 2091 | popupContainer.innerHTML = safeValue; |
| 2092 | 2092 | popupContainer.appendChild(buttonContainer); |
| 2093 | 2093 | |
| 2094 | 2094 | popup = new Popup(popupContainer, POPUP_TYPE.TEXT, '', { okButton: 'Cancel', allowVerticalScrolling: true }); |
| 2095 | 2095 | popup.show() |
| 2096 | 2096 | .then((result => resolve(typeof result === 'number' ? resultToButtonMap.get(result) ?? '' : ''))) |
| 2097 | 2097 | .catch(() => resolve('')); |