add missing cancelButton setting to callGenericPopup

This commit is contained in:
LenAnderson 2024-04-12 20:50:14 -04:00
parent 91558ad9ea
commit 278ec029f5
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ export function callGenericPopup(text, type, inputValue = '', { okButton, cancel
text,
type,
inputValue,
{ okButton, rows, wide, large, allowHorizontalScrolling, allowVerticalScrolling },
{ okButton, cancelButton, rows, wide, large, allowHorizontalScrolling, allowVerticalScrolling },
);
return popup.show();
}