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

This commit is contained in:
2024-10-30 21:47:22 +01:00
parent 25503a688b
commit 9b14d62830
12 changed files with 4903 additions and 6059 deletions

View File

@ -1,5 +1,6 @@
import { Grid, Paper, Typography } from "@mui/material";
import { Paper, Typography } from "@mui/material";
import React, { PropsWithChildren } from "react";
import Grid from "@mui/material/Grid2";
export function EditSection(
p: {
@ -9,7 +10,7 @@ export function EditSection(
} & PropsWithChildren
): React.ReactElement {
return (
<Grid item sm={12} md={p.fullWidth ? 12 : 6}>
<Grid size={{ sm: 12, md: p.fullWidth ? 12 : 6 }}>
<Paper style={{ margin: "10px", padding: "10px" }}>
{(p.title || p.actions) && (
<span