diff --git a/src/app/components/array-form/array-form.component.ts b/src/app/components/array-form/array-form.component.ts
index 973515f..ac5a1f6 100644
--- a/src/app/components/array-form/array-form.component.ts
+++ b/src/app/components/array-form/array-form.component.ts
@@ -5,6 +5,7 @@ import { MatIconModule } from '@angular/material/icon';
import { ParamInfo } from '../../models/form.model';
import { ListsService } from '../../services/lists.service';
import { SchemaService } from '../../services/schema.service';
+import { parseStringToArray } from '../../utils/params.utils';
@Component({
selector: 'app-array-form',
@@ -30,7 +31,7 @@ export class ArrayFormComponent implements OnInit {
ngOnInit(): void {
if (this.paramFormControl && this.paramInfo?.schema) {
if (!Array.isArray(this.paramFormControl.value)) {
- this.arrayValue = this.schemaService.parseStringToArray(
+ this.arrayValue = parseStringToArray(
this.paramFormControl.value,
this.paramInfo.schema,
);
diff --git a/src/app/components/params-form/params-form.component.html b/src/app/components/params-form/params-form.component.html
index 65fe90e..02ef436 100644
--- a/src/app/components/params-form/params-form.component.html
+++ b/src/app/components/params-form/params-form.component.html
@@ -1,15 +1,4 @@
@if (paramsSchema && paramsFormInfo) {
- @if (paramsOptions.length > 1) {
-