Skip to content

Commit

Permalink
Correct order for graph status elements
Browse files Browse the repository at this point in the history
  • Loading branch information
testower committed Dec 17, 2024
1 parent 57594ef commit 277c98f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/screens/providers/components/GraphStatus.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,18 +115,18 @@ class GraphStatus extends React.Component {
<h4 style={{ fontWeight: 'bold', margin: '0' }}>Base graph status</h4>
</div>
<div style={wrapperStyle}>
{baseGraphStatus.otp2 && (
<GraphStatusDetails
status={baseGraphStatus.otp2.status}
started={baseGraphStatus.otp2.started}
/>
)}
{graphStatus.otp2 && (
<GraphStatusDetails
status={'STARTED'}
started={graphStatus.otp2.started}
/>
)}
{baseGraphStatus.otp2 && (
<GraphStatusDetails
status={baseGraphStatus.otp2.status}
started={baseGraphStatus.otp2.started}
/>
)}
</div>
</div>
);
Expand Down

0 comments on commit 277c98f

Please sign in to comment.