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