Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
Merge branch 'develop' into MAT-7855
Browse files Browse the repository at this point in the history
  • Loading branch information
adongare authored Nov 18, 2024
2 parents 38fb20e + ebe3e66 commit bedb7bb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
16 changes: 9 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
"fhir": "^4.11.1",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"fqm-execution": "^1.5.0",
"fqm-execution": "1.6.0",
"html-react-parser": "^1.4.12",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
Expand Down
4 changes: 2 additions & 2 deletions src/api/CalculationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -431,8 +431,8 @@ export class CalculationService {
(strata) =>
// TODO: workaround because fqm execution doesn't provide IDs for all cases
(strata.strataCode &&
strata.strataCode === strataResult.strataCode) ||
(strata.strataId && strata.strataId === strataResult.strataId)
strata.strataCode === strataResult?.strataCode) ||
(strata.strataId && strata.strataId === strataResult?.strataId)
);
return population?.result && stratification?.result;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/editor/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const Editor = ({
return (
<div
data-testid="test-case-json-editor"
style={{ height: "calc(100% - 64px)" }}
style={{ height: "calc(100% - 48px)" }}
>
<AceEditor
value={value}
Expand Down

0 comments on commit bedb7bb

Please sign in to comment.