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 5e95bbd commit 809b0b7Copy full SHA for 809b0b7
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 && "(SP: " + pv.sp_value + ")"}{" "}
+ {(pv.sp_value != undefined) && `(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