replace many of the javascript "confirm" calls with the nicer UX version

This commit is contained in:
2024-04-24 19:52:33 -06:00
parent d9aebfebd3
commit eeaacaf202
3 changed files with 243 additions and 185 deletions

View File

@@ -39,5 +39,6 @@ export interface NotificationIface {
type: string; // "toast" | "info" | "success" | "warning" | "danger"
title: string;
text: string;
onNo?: () => Promise<void>;
onYes?: () => Promise<void>;
}