Frontend: minor fix

This commit is contained in:
2023-05-08 12:27:40 +02:00
parent 107e980e31
commit 489ca59c2c
@@ -83,15 +83,16 @@ class MeasurementStatistics extends Component<MyProps, MyState> {
</TableRow>
<TableRow>
<TableCell component="th" scope="row"> Compression ratio: </TableCell>
<TableCell align="right">{this.state.compressionRatio.toPrecision(1)}x</TableCell>
<TableCell align="right">{this.state.compressionRatio} x</TableCell>
</TableRow>
<TableRow>
<TableCell component="th" scope="row"> Data acquisition efficiency: </TableCell>
<TableCell align="right">{(this.state.collectionEfficiency * 100).toPrecision(1)}%</TableCell>
<TableCell align="right">{this.state.collectionEfficiency}</TableCell>
</TableRow>
<TableRow>
<TableCell component="th" scope="row"> Indexing rate: </TableCell>
<TableCell align="right">{(this.state.indexingRate * 100).toPrecision(1)}%</TableCell>
<TableCell align="right">{this.state.indexingRate}</TableCell>
</TableRow>
</TableBody>
</Table>