Skip to content
Snippets Groups Projects
Commit 7210b3f3 authored by Audrey Hamelers's avatar Audrey Hamelers
Browse files

#1203

parent 955ad831
No related branches found
No related tags found
1 merge request!382Dev k8s release merge
...@@ -98,13 +98,13 @@ const JobLog = ({ match, ...props }) => ( ...@@ -98,13 +98,13 @@ const JobLog = ({ match, ...props }) => (
<tbody> <tbody>
<tr> <tr>
<th>Date</th> <th>Date</th>
<th>Datacenter</th> <th>DC</th>
<th>Event</th> <th>Event</th>
</tr> </tr>
{jobLog.map(entry => ( {jobLog.map(entry => (
<tr key={entry.id}> <tr key={entry.id}>
<TdDate> <TdDate>
{moment(entry.created).format('DD/MM/YYYY HH:mm')} {moment(entry.created).format('DD/MM/YYYY HH:mm:ss')}
</TdDate> </TdDate>
<TdDate>{entry.dataCenter}</TdDate> <TdDate>{entry.dataCenter}</TdDate>
<TD> <TD>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment