fix: show message on error alert if text is null

This commit is contained in:
ThatOneCalculator 2023-06-02 14:52:44 -07:00
parent 35e72bfca7
commit 4cbf73140c
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
1 changed files with 3 additions and 0 deletions

View File

@ -277,6 +277,9 @@ export function alert(props: {
text?: string | null; text?: string | null;
}): Promise<void> { }): Promise<void> {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
if (props.text == null && props.type === "error") {
props.text = "An unknown error occured!"
}
popup( popup(
MkDialog, MkDialog,
props, props,