diff --git a/src/renderer/components/Experiment/Train/TrainLoRA.tsx b/src/renderer/components/Experiment/Train/TrainLoRA.tsx
index 7667ca9f2b751146177ead19864dfa063c52c7cc..4811e514f9bbdfb3e2b85ed7aea1356aa0d67dfa 100644
--- a/src/renderer/components/Experiment/Train/TrainLoRA.tsx
+++ b/src/renderer/components/Experiment/Train/TrainLoRA.tsx
@@ -320,8 +320,8 @@ export default function TrainLoRA({ experimentInfo }) {
               <tr>
                 <th style={{ width: 80}}>ID</th>
                 <th>Details</th>
-                <th style={{ width: 180}}>Status</th>
-                <th style={{ width: 240}}></th>
+                <th style={{ width: 200}}>Status</th>
+                <th style={{ width: 260}}></th>
               </tr>
             </thead>
             <tbody style={{ overflow: 'auto', height: '100%' }}>
@@ -346,6 +346,7 @@ export default function TrainLoRA({ experimentInfo }) {
 
                         {job?.job_data?.start_time && (
                           <>
+                            &nbsp;
                             Started:{' '}
                             {dayjs(job?.job_data?.start_time).fromNow()}
                           </>
@@ -356,6 +357,7 @@ export default function TrainLoRA({ experimentInfo }) {
                         {job?.job_data?.start_time &&
                         job?.job_data?.end_time ? (
                           <>
+                            &nbsp;
                             Completed in:{' '}
                             {job?.job_data?.end_time &&
                               job?.job_data?.end_time &&