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

Amélioration de #175 : suivi récursif

parent c43a6280
No related branches found
No related tags found
No related merge requests found
......@@ -51,16 +51,16 @@ export class ParamLinkComponent implements OnChanges, Observer, OnDestroy {
}
/**
* Returns true if current target needs to be calculated,
* Returns true if current target requires a calculation (direct or not),
* whether the result is already available or not
*/
public get isCalculated(): boolean {
const refValue = this.param.paramDefinition.referencedValue;
return refValue && (refValue.isResult() || refValue.isExtraResult());
return refValue && refValue.isCalculated();
}
/**
* Returns true if current target needs to be calculated,
* Returns true if current target requires a calculation (direct or not),
* but result is not yet available
*/
public get isAwaitingCalculation(): boolean {
......
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