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
The component that handles code values in the module builder, for example procedure_code.code in an ImagingStudy state, will coerce a value that is all numeric characters to a JavaScript Numeric type. For some SNOMED codes, such as 16335031000119103, which is used in the lung cancer module, the numeric representation is beyond the precision of the JavaScript interpreter. The loss of precision causes the code to actually change.
Code values should all be treated as strings, even if they are only numeric characters.
The text was updated successfully, but these errors were encountered:
The component that handles code values in the module builder, for example
procedure_code.code
in anImagingStudy
state, will coerce a value that is all numeric characters to a JavaScriptNumeric
type. For some SNOMED codes, such as16335031000119103
, which is used in the lung cancer module, the numeric representation is beyond the precision of the JavaScript interpreter. The loss of precision causes the code to actually change.Code values should all be treated as strings, even if they are only numeric characters.
The text was updated successfully, but these errors were encountered: