diff --git a/client/src/components/Layout.tsx b/client/src/components/Layout.tsx
index e612365..d7b2ad6 100644
--- a/client/src/components/Layout.tsx
+++ b/client/src/components/Layout.tsx
@@ -112,7 +112,7 @@ export default function Layout({ children, title, action, subheader, wide }: Lay
{/* Top nav */}
-
+
{title && (
@@ -246,7 +246,7 @@ export default function Layout({ children, title, action, subheader, wide }: Lay
)}
-
+
{children}
diff --git a/client/src/pages/Dashboard.tsx b/client/src/pages/Dashboard.tsx
index e033f07..463fdc3 100644
--- a/client/src/pages/Dashboard.tsx
+++ b/client/src/pages/Dashboard.tsx
@@ -45,7 +45,7 @@ export default function Dashboard() {
const maxSeverity = Math.max(...(a?.openBySeverity.map((r) => r.count) ?? [1]));
return (
- Last 30 days}>
+ Last 30 days}>
{!a ? (
Loading analytics…
) : (
@@ -143,7 +143,7 @@ export default function Dashboard() {
{a.queueByAssignee.length === 0 ? (
No open tickets right now.
) : (
-
+
{a.queueByAssignee
.slice()
.sort((x, y) => y.count - x.count)