diff --git a/apps/nar-v3/src/components/CellPatchingCard.jsx b/apps/nar-v3/src/components/CellPatchingCard.jsx index aa9fd9c..bdf29ab 100644 --- a/apps/nar-v3/src/components/CellPatchingCard.jsx +++ b/apps/nar-v3/src/components/CellPatchingCard.jsx @@ -49,6 +49,7 @@ function CellPatchingCard(props) { "Seal resistance": formatQuantList(activity.device[0].sealResistance), "Series resistance": formatQuantList(activity.device[0].seriesResistance), "Holding potential": formatQuantList(activity.device[0].holdingPotential), + "Liquid junction potential correction": formatQuantList(activity.device[0].liquidJunctionPotential), "Bath solution": formatSolution(activity.tissueBathSolution), "Bath temperature": formatQuant(activity.bathTemperature), }; diff --git a/apps/nar-v3/tmp/build_query.py b/apps/nar-v3/tmp/build_query.py index 1f59663..b798dd0 100644 --- a/apps/nar-v3/tmp/build_query.py +++ b/apps/nar-v3/tmp/build_query.py @@ -384,6 +384,34 @@ ) ], ), + QP( + f"{vocab}liquidJunctionPotential", + name="liquidJunctionPotential", + expect_single=True, + properties=[ + QP( + f"{vocab}value", + name="values", + properties=[ + QP( + f"{vocab}value", + name="value", + ), + QP( + f"{vocab}unit", + name="units", + expect_single=True, + properties=[ + QP( + f"{vocab}name", + name="name", + ) + ], + ), + ], + ) + ], + ), ], ), Q_tissue_bath_solution,