diff --git a/public/assets/css/core-extend.css b/public/assets/css/core-extend.css index b05f71c1..3b5619a2 100644 --- a/public/assets/css/core-extend.css +++ b/public/assets/css/core-extend.css @@ -456,3 +456,8 @@ font-weight: normal; .fs-md-xlarge { font-size: 170% !important; } .fs-md-xxlarge { font-size: calc(1.725rem + 5.7vw) !important; } } + +.me-16 { + /* margin-inline-end: -7.0625rem !important; */ + margin-left: -7.0625rem !important; +} diff --git a/src/components/ServiceProject/JobList.jsx b/src/components/ServiceProject/JobList.jsx index 099b30e4..65abf665 100644 --- a/src/components/ServiceProject/JobList.jsx +++ b/src/components/ServiceProject/JobList.jsx @@ -20,6 +20,12 @@ const JobList = () => { ); const jobGrid = [ + { + key: "jobTicketUId", + label: "Job Id", + getValue: (e) => e?.jobTicketUId || "N/A", + align: "text-start", + }, { key: "title", label: "Title", @@ -40,12 +46,7 @@ const JobList = () => { isAlwaysVisible: true, className: "text-start", }, - { - key: "jobTicketUId", - label: "Job Id", - getValue: (e) => e?.jobTicketUId || "N/A", - align: "text-start", - }, + { key: "dueDate", label: "Due On", diff --git a/src/components/ServiceProject/ManageJob.jsx b/src/components/ServiceProject/ManageJob.jsx index bd191ca4..53c51578 100644 --- a/src/components/ServiceProject/ManageJob.jsx +++ b/src/components/ServiceProject/ManageJob.jsx @@ -123,7 +123,7 @@ const ManageJob = ({ Job }) => { size="md" /> -
+
Job Id : {data?.jobTicketUId || "N/A"}
+ + {/* Edit icon on right */} +