Update project dependencies
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-10-29 14:53:29 +01:00
parent c44c6c3bf5
commit 58eceeda2d
10 changed files with 891 additions and 579 deletions

View File

@@ -1,11 +1,11 @@
import { Tooltip } from "@mui/material";
import date from "date-and-time";
import { format } from "date-and-time";
import { time } from "../utils/DateUtils";
export function formatDate(time: number): string {
const t = new Date();
t.setTime(1000 * time);
return date.format(t, "DD/MM/YYYY HH:mm:ss");
return format(t, "DD/MM/YYYY HH:mm:ss");
}
export function timeDiff(a: number, b: number): string {