Frontend: Fix maks labels

This commit is contained in:
2025-11-10 09:47:01 +01:00
parent 73c65066a9
commit c7964510db
+2 -2
View File
@@ -48,11 +48,11 @@ class PixelMask extends React.Component<MyProps, MyState> {
<TableCell align="right">{this.props.s?.user_mask ?? "N/A"}</TableCell>
</TableRow>
<TableRow>
<TableCell component="th" scope="row"> Wrong gain: </TableCell>
<TableCell component="th" scope="row"> Error pixels: </TableCell>
<TableCell align="right">{this.props.s?.wrong_gain ?? "N/A"}</TableCell>
</TableRow>
<TableRow>
<TableCell component="th" scope="row"> G0 RMS pedestal: </TableCell>
<TableCell component="th" scope="row"> Noisy pixels: </TableCell>
<TableCell align="right">{this.props.s?.too_high_pedestal_rms ?? "N/A"}</TableCell>
</TableRow>
</TableBody>