From 199dd60de2dbfd835e6c891f7aa986b6fd89f117 Mon Sep 17 00:00:00 2001
From: Audrey Hamelers <hamelers@ebi.ac.uk>
Date: Tue, 29 Jun 2021 10:52:59 +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 fbd58e32c..940df14ff 100644
--- a/app/components/manage-site/JobLogPage.jsx
+++ b/app/components/manage-site/JobLogPage.jsx
@@ -51,7 +51,7 @@ const ParseUpdate = ({ col, val }) => {
         return `Job ${col} at: ${moment
           .utc(val)
           .local()
-          .format('DD/MM/YYYY HH:mm:ss')}`
+          .format('DD/MM/YYYY HH:mm:ss.SS')}`
       return `Job ${col} is: ${val}`
   }
 }
@@ -104,7 +104,7 @@ const JobLog = ({ match, ...props }) => (
             {jobLog.map(entry => (
               <tr key={entry.id}>
                 <TdDate>
-                  {moment(entry.created).format('DD/MM/YYYY HH:mm:ss')}
+                  {moment(entry.created).format('DD/MM/YYYY HH:mm:ss.SS')}
                 </TdDate>
                 <TdDate>{entry.dataCenter}</TdDate>
                 <TD>
-- 
GitLab