Skip to content

Commit 8c5a566

Browse files
committed
fix: 24 hour logs time format
1 parent 8e2a3f6 commit 8c5a566

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/js/SymbolLogsIcon.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ class SymbolLogsIcon extends React.Component {
230230
<td
231231
className='text-center align-middle'
232232
title={moment(row.loggedAt).format()}>
233-
{moment(row.loggedAt).format('hh:mm:ss A')}
233+
{moment(row.loggedAt).format('HH:mm:ss')}
234234
</td>
235235
<td>{row.msg}</td>
236236
<td className='text-center'>

0 commit comments

Comments
 (0)