We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35e7935 commit ce5c297Copy full SHA for ce5c297
js/nodes/parsed_model_part.js
@@ -56,6 +56,12 @@ class ParsedModelPart {
56
sub_mdpa_namepath = `${sub_mdpa_namepath}.${match[3]}`;
57
this.properties["submodelpart_list"].push(sub_mdpa_namepath);
58
}
59
+
60
+ if (match[0].includes("End")) {
61
+ sub_mdpa_namepath = sub_mdpa_namepath.split(".");
62
+ sub_mdpa_namepath.pop();
63
+ sub_mdpa_namepath = sub_mdpa_namepath.join(".");
64
+ }
65
66
67
// Populate the outputs
0 commit comments