From 8e86e7fba5177683b3763c7ce953ce9b8949dbbe Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Thu, 11 Apr 2024 15:22:05 -0700 Subject: [PATCH] Resolve linting errors from merge. --- .../job-lines-expander.component.jsx | 24 ++++++++++++------- 1 file changed, 15 insertions(+), 9 deletions(-) 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} + + + ) })) : {