formatting

This commit is contained in:
Joel Wetzell
2026-04-05 18:09:47 -05:00
parent 10ff26e48c
commit e66195d702
24 changed files with 248 additions and 258 deletions
+2 -5
View File
@@ -31,10 +31,7 @@ export class ArrayFormComponent implements OnInit {
ngOnInit(): void {
if (this.paramFormControl && this.paramInfo?.schema) {
if (!Array.isArray(this.paramFormControl.value)) {
this.arrayValue = parseStringToArray(
this.paramFormControl.value,
this.paramInfo.schema,
);
this.arrayValue = parseStringToArray(this.paramFormControl.value, this.paramInfo.schema);
} else {
this.arrayValue = this.paramFormControl.value;
}
@@ -101,7 +98,7 @@ export class ArrayFormComponent implements OnInit {
);
}
}
// NOTE(jwetzel): this is only needed for object item types
updateItem(index: number, value: any) {
if (this.arrayValue) {