From 7210b3f3827ed573bcda4c7ab0344dc3fe9b37ef Mon Sep 17 00:00:00 2001
From: Audrey Hamelers <hamelers@ebi.ac.uk>
Date: Tue, 29 Jun 2021 10:05:57 +0100
Subject: [PATCH] #1203

---
 app/components/manage-site/JobLogPage.jsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/components/manage-site/JobLogPage.jsx b/app/components/manage-site/JobLogPage.jsx
index 5c845ecf2..fbd58e32c 100644
--- a/app/components/manage-site/JobLogPage.jsx
+++ b/app/components/manage-site/JobLogPage.jsx
@@ -98,13 +98,13 @@ const JobLog = ({ match, ...props }) => (
           <tbody>
             <tr>
               <th>Date</th>
-              <th>Datacenter</th>
+              <th>DC</th>
               <th>Event</th>
             </tr>
             {jobLog.map(entry => (
               <tr key={entry.id}>
                 <TdDate>
-                  {moment(entry.created).format('DD/MM/YYYY HH:mm')}
+                  {moment(entry.created).format('DD/MM/YYYY HH:mm:ss')}
                 </TdDate>
                 <TdDate>{entry.dataCenter}</TdDate>
                 <TD>
-- 
GitLab