This commit is contained in:
Alex Holliday
2026-02-06 17:24:16 +00:00
parent b0686c0576
commit 9974fa4010
2 changed files with 15 additions and 0 deletions
+13
View File
@@ -1,4 +1,5 @@
import Stack from "@mui/material/Stack";
import Typography from "@mui/material/Typography";
import { TableJobs, TableFailedJobs } from "@/Pages/Logs/TableJobs";
import { useTheme } from "@mui/material";
@@ -31,7 +32,19 @@ export const TabQueue = () => {
return (
<Stack gap={theme.spacing(8)}>
<Metrics metrics={metrics} />
<Typography
variant="h6"
sx={{ textTransform: "uppercase" }}
>
{t("pages.logs.jobQueue")}
</Typography>
<TableJobs jobs={jobs} />
<Typography
variant="h6"
sx={{ textTransform: "uppercase" }}
>
{t("pages.logs.failedJobs")}
</Typography>
<TableFailedJobs metrics={metrics} />
<Stack alignItems={"flex-end"}>
<Button
+2
View File
@@ -791,6 +791,8 @@
"logLevelSelect": {
"label": "Log level"
},
"jobQueue": "Job queue",
"failedJobs": "Failed jobs",
"noLogs": "No logs found",
"metrics": {
"jobs": "Jobs",