Skip to content

Commit 00c747d

Browse files
committed
bump version to new rulegraph
1 parent 20abbad commit 00c747d

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
99
"@emotion/react": "^11.11.4",
1010
"@emotion/styled": "^11.11.5",
11-
"@foerderfunke/matching-engine": "^1.0.5",
11+
"@foerderfunke/matching-engine": "^1.0.6",
1212
"@mui/icons-material": "^5.15.19",
1313
"@mui/material": "^5.15.19",
1414
"@mui/x-charts": "^7.6.2",

src/ui/screens/benefit-page/components/RecursiveRulesTable.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ function renderNode(
2020
return renderNode(node.children?.[0], '', metadata, false, t);
2121
}
2222

23+
if (nodeType === 'NodeCLASS') {
24+
return renderNode(node.children?.[0], '', metadata, false, t);
25+
}
26+
2327
// NOT → flip negation on child
2428
if (nodeType === 'NodeNOT') {
2529
const child = node.children?.[0];

0 commit comments

Comments
 (0)