test: verify backup monitoring implementation

This commit is contained in:
2026-05-11 21:57:31 +02:00
parent 322b3d1a3b
commit a748512d22
6 changed files with 21 additions and 8 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import {
import type {
BackupAlert,
BackupDashboardSummary,
BackupJob,
@@ -1,5 +1,5 @@
import { Button, Chip, Paper, Table, TableBody, TableCell, TableContainer, TableHead, TableRow } from "@mui/material";
import { BackupAlert } from "../types/backups";
import type { BackupAlert } from "../types/backups";
interface Props {
alerts: BackupAlert[];
+1 -1
View File
@@ -8,7 +8,7 @@ import {
TableHead,
TableRow,
} from "@mui/material";
import { BackupJob, BackupRun } from "../types/backups";
import type { BackupJob, BackupRun } from "../types/backups";
interface Props {
jobs: BackupJob[];
+1 -1
View File
@@ -13,7 +13,7 @@ import {
TableRow,
} from "@mui/material";
import { useState } from "react";
import { BackupRun } from "../types/backups";
import type { BackupRun } from "../types/backups";
interface Props {
runs: BackupRun[];