Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ const DeviceHealthReport: Application.Types.iByComponent = (props) => {
if (moment().diff(moment(item[field]), 'hours') > 24) className = 'warning';
else if (moment().diff(moment(item[field]), 'days') > 7) className = 'danger';
return <a href={`${homePath}index.cshtml?name=DeviceIssuesPage&MeterID=${item.ID}&Tab=openmic&OpenMICAcronym=${item.OpenMIC}`} target='_blank'>
<span className={`badge badge-pill badge-${className}`}>{moment(item[field]).format('MM/DD/YYYY hh:mm')}</span></a>
<span className={`badge badge-pill badge-${className}`}>{moment(item[field]).format('MM/DD/YYYY HH:mm')}</span></a>
}}
> Last Succ Conn
</Column>
Expand Down