We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88bc067 commit 0b5d40cCopy full SHA for 0b5d40c
src/patient/PatientRecord.jsx
@@ -59,6 +59,7 @@ class PatientRecord {
59
let result = item, i;
60
for (i = 0; i < attributePath.length; i++) {
61
result = result[attributePath[i]];
62
+ if (result === null) return null;
63
}
64
return result;
65
0 commit comments