diff --git a/client/src/components/job-detail-lines/job-lines-expander.component.jsx b/client/src/components/job-detail-lines/job-lines-expander.component.jsx
index 9551db7a0..16d2d6fa5 100644
--- a/client/src/components/job-detail-lines/job-lines-expander.component.jsx
+++ b/client/src/components/job-detail-lines/job-lines-expander.component.jsx
@@ -1,5 +1,5 @@
import { useQuery } from "@apollo/client";
-import { Col, Row, Skeleton, Timeline, Typography } from "antd";
+import { Col, Row, Skeleton, Space, Timeline, Typography } from "antd";
import React from "react";
import { useTranslation } from "react-i18next";
import { Link } from "react-router-dom";
@@ -81,14 +81,20 @@ export function JobLinesExpander({ jobline, jobid, bodyshop }) {
? data.parts_dispatch_lines.map((line) => ({
key: line.id,
children: (
- } wrap>
- {line.parts_dispatch.number}
- {bodyshop.employees.find((e) => e.id === line.parts_dispatch.employeeid)?.first_name}
-
- {t("parts_dispatch_lines.fields.accepted_at")}
- {line.accepted_at}
-
-
+
+
+ {line.parts_dispatch.number}
+
+
+ {bodyshop.employees.find((e) => e.id === line.parts_dispatch.employeeid)?.first_name}
+
+
+
+ {t("parts_dispatch_lines.fields.accepted_at")}
+ {line.accepted_at}
+
+
+
)
}))
: {