Skip to content

Commit

Permalink
Merge pull request #398 from MeasureAuthoringTool/MAT-7794_savedFunct…
Browse files Browse the repository at this point in the history
…ions

MAT-7794 fix comment not shown issue
  • Loading branch information
sb-cecilialiu authored Dec 4, 2024
2 parents e2ac37b + 514ce34 commit ed35640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CqlBuilderPanel/functionsSection/FunctionsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function FunctionsSection({
.map((func) => {
// get the comments for CQL definition from antlr parser expressions
const expression = expressionDefinitions.find(
(expression) => func.logic == expression.text?.replace(/["']/g, "")
(expression) => func.logic == expression.text
);
return {
...func,
Expand Down

0 comments on commit ed35640

Please sign in to comment.