Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
MatsJohansen87 committed Oct 18, 2023
2 parents 9b53e0c + e1ec75d commit 6cf5913
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,13 @@ const resolveOperation = (operation: AstElement): string => {

const getSingleton = (criterion: AstBottomLayerValue): string => {
let expression: string = "";
console.log(criterion)
console.log(criterion);

//TODO: Workaround for using the value of "Therapy of Tumor" as key. Need an additional field in catalogue
if (criterion.key === "therapy_of_tumor") {
criterion.key = criterion.value as string;
}

const myCriterion = criterionMap.get(criterion.key)

if (myCriterion) {
Expand Down

0 comments on commit 6cf5913

Please sign in to comment.