Skip to content
Snippets Groups Projects
Commit 2913484f authored by mathias.chouet's avatar mathias.chouet
Browse files

Fix bug in JetResults conflicting with other Results components

parent 4eafa5a2
No related branches found
No related tags found
No related merge requests found
......@@ -80,8 +80,10 @@ export class CalculatorResultsComponent implements AfterViewChecked {
// FixedVar and Jet are mutually incompatible (the 2nd extend the 1st)
if (this.isJet) {
this.jetResultsComponent.results = f.results;
this.fixedVarResultsComponent.results = undefined;
} else {
this.fixedVarResultsComponent.results = f.results;
this.jetResultsComponent.results = undefined;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment