Commit 2761d013 authored by El Mghazli Yacine's avatar El Mghazli Yacine

cleanup rowCtrl

parent b112ed2c
......@@ -18,12 +18,12 @@ export class RowCtrl extends FormGroup {
switch (this.type) {
case IArgType.boolean:
return this.boolFC.value ? "true" : "false";
case IArgType.list:
return this.listFC.value ? "true" : "false";
// case IArgType.list:
// return this.listFC.value as string;
case IArgType.number:
return this.numberFC.value ? "true" : "false";
case IArgType.range:
return this.rangeFC.value ? "true" : "false";
return this.numberFC.value as string;
// case IArgType.range:
// return this.rangeFC.value as string;
case IArgType.string:
return this.stringFC.value
}
......
Markdown is supported
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