Commit f1ca551c authored by Grand Francois's avatar Grand Francois
Browse files

#48 ParamFieldLineComponent : modif pour les paramètres dont la config est...

 #48 ParamFieldLineComponent : modif pour les paramètres dont la config est FIX (non variable, non calculable), par ex dans les courbes de remous : quand on affiche le radio "lié", on affiche aussi le radio "fixé"
Showing with 1 addition and 1 deletion
+1 -1
...@@ -103,7 +103,7 @@ export class ParamFieldLineComponent implements OnChanges { ...@@ -103,7 +103,7 @@ export class ParamFieldLineComponent implements OnChanges {
private hasRadioFix(): boolean { private hasRadioFix(): boolean {
switch (this._param.radioConfig) { switch (this._param.radioConfig) {
case ParamRadioConfig.FIX: case ParamRadioConfig.FIX:
return false; return this.hasRadioLink();
default: default:
return true; return true;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment