Skip to content
Snippets Groups Projects
Commit 20cc8095 authored by Reinoud Bokhorst's avatar Reinoud Bokhorst
Browse files

OSB-31: child panel implementation, V2.1

parent 88cd4abe
No related branches found
No related tags found
2 merge requests!89Monitoring maintenance Epic branch merge,!1Resolve OSB-13 "Monitoringmaintenance "
...@@ -72,8 +72,8 @@ class SORow extends Component { ...@@ -72,8 +72,8 @@ class SORow extends Component {
<div className='popover-header'>{data.observation_id}</div> <div className='popover-header'>{data.observation_id}</div>
<div> <div>
<strong>Start:</strong> { start_datetime}<br/> <strong>Start:</strong> { moment.utc(start_datetime).format(datetime_format) }<br/>
<strong>End:</strong> { end_datetime }<br/> <strong>End:</strong> { moment.utc(end_datetime).format(datetime_format) }<br/>
<strong>Mode:</strong> { mode.join(',') }<br/> <strong>Mode:</strong> { mode.join(',') }<br/>
<Table size="sm" className="so-table table-wrapper"> <Table size="sm" className="so-table table-wrapper">
<thead><tr><th>Station name</th><th>errors</th></tr></thead> <thead><tr><th>Station name</th><th>errors</th></tr></thead>
......
...@@ -94,11 +94,11 @@ class StationTestBadgeC extends Component { ...@@ -94,11 +94,11 @@ class StationTestBadgeC extends Component {
<tbody> <tbody>
<tr> <tr>
<th>Start:</th> <th>Start:</th>
<td>{data.start_datetime}</td> <td>{moment.utc(data.start_datetime).format(datetime_format)}</td>
</tr> </tr>
<tr> <tr>
<th>End:</th> <th>End:</th>
<td>{data.end_datetime}</td> <td>{moment.utc(data.end_datetime).format(datetime_format)}</td>
</tr> </tr>
<tr> <tr>
<th>Checks:</th> <th>Checks:</th>
...@@ -179,11 +179,11 @@ class RTSMBadge extends Component { ...@@ -179,11 +179,11 @@ class RTSMBadge extends Component {
<tbody> <tbody>
<tr> <tr>
<th>Start:</th> <th>Start:</th>
<td>{data.start_datetime}</td> <td>{moment.utc(data.start_datetime).format(datetime_format)}</td>
</tr> </tr>
<tr> <tr>
<th>End:</th> <th>End:</th>
<td>{data.end_datetime}</td> <td>{moment.utc(data.end_datetime).format(datetime_format)}</td>
</tr> </tr>
<tr> <tr>
<th>Mode:</th> <th>Mode:</th>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment