You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are at least two issues in lib/leafLevel.js where properties are not properly accessed. Specifically deepInputProperty and deepInputDate do not work when the value of deepProperty needs to drill down into the input below the top-level.
For example, if the input to deepInputProperty is:
There are at least two issues in lib/leafLevel.js where properties are not properly accessed. Specifically deepInputProperty and deepInputDate do not work when the value of deepProperty needs to drill down into the input below the top-level.
For example, if the input to deepInputProperty is:
And the value of deepProperty is: problem.code.name
The return would be undefined rather than the expected value of "Asthma"
This because the code:
Only works if deepProperty does not try to drill down below the top level (ie there are no '.' characters in it)
This behavior is present in at least deepInputProperty and deepInputDate but may exist elsewhere.
I've patched on my install and will submit a pull request here shortly.
The text was updated successfully, but these errors were encountered: