Frontend: minor fix
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user