allow viewing and deletion of an image

This commit is contained in:
2024-03-08 23:56:19 -07:00
parent 792e9cb648
commit c58f012d2c
5 changed files with 109 additions and 14 deletions

View File

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