Skip to content

Commit

Permalink
fix: Clarify measurements/sec on Dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
mman committed Dec 6, 2024
1 parent cbf044b commit 70962e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/client/views/dashboard/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function Dashboard() {
<CRow>
<CCol xs="12" md="6">
<CCallout color="info">
<small className="text-muted">Total Measurement Rate (measurements/second)</small>
<small className="text-muted">Total Measurement Rate (measurements/sec)</small>
<br />
<strong className="h4">{measurementRate.toFixed(1)}</strong>
</CCallout>
Expand Down Expand Up @@ -125,8 +125,8 @@ function Dashboard() {
</CCol>
<CCol className="text-end" xs="auto">
<strong> {deviceStats.measurementRate} </strong>(
{((deviceStats.measurementRate / adjustedMeasurementRate) * 100).toFixed(0)}
%)
{((deviceStats.measurementRate / adjustedMeasurementRate) * 100).toFixed(0)}%)
<small className="text-muted"> measurements/sec </small>
</CCol>
</CRow>
<CRow className="align-items-end">
Expand Down

0 comments on commit 70962e6

Please sign in to comment.