We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 327e038 commit bd7404cCopy full SHA for bd7404c
app/components/Block.tsx
@@ -59,7 +59,7 @@ export default function Block({
59
<td className="py-1 px-4 ">
60
<span id={pv.human_readable_name + "_VALUE"}>
61
{pv.value} {pv.units != null && pv.units}
62
- {pv.sp_value != undefined && `(SP: ${pv.sp_value})`}{" "}
+ {pv.sp_value != null && `(SP: ${pv.sp_value})`}{" "}
63
<a
64
href="https://github.com/ISISComputingGroup/ibex_user_manual/wiki/Blocks#alarms"
65
className="text-red-600"
0 commit comments