diff --git a/src/app/shared/form/builder/ds-dynamic-form-ui/models/array-group/dynamic-form-array.component.ts b/src/app/shared/form/builder/ds-dynamic-form-ui/models/array-group/dynamic-form-array.component.ts index 990408a24a..a83694bc23 100644 --- a/src/app/shared/form/builder/ds-dynamic-form-ui/models/array-group/dynamic-form-array.component.ts +++ b/src/app/shared/form/builder/ds-dynamic-form-ui/models/array-group/dynamic-form-array.component.ts @@ -111,10 +111,7 @@ export class DsDynamicFormArrayComponent extends DynamicFormArrayComponent imple .filter(([group, control], index) => index > 0 && hasValue((group.group[0] as any).value)) // disregard the first group, it is always empty to ensure the first field remains empty .map(([group, control]: [DynamicFormArrayGroupModel, AbstractControl], index: number) => { const model = group.group[0] as DynamicConcatModel; - // console.log('model.id', model.id); - // console.log('model.value', model.value); let formFieldMetadataValue: FormFieldMetadataValueObject = model.value as FormFieldMetadataValueObject; - // console.log('formFieldMetadataValue', formFieldMetadataValue); if (hasValue(formFieldMetadataValue)) { const metadataValue = Object.assign(new MetadataValue(), { value: formFieldMetadataValue.display, diff --git a/src/app/shared/form/builder/ds-dynamic-form-ui/models/scrollable-dropdown/dynamic-scrollable-dropdown.component.ts b/src/app/shared/form/builder/ds-dynamic-form-ui/models/scrollable-dropdown/dynamic-scrollable-dropdown.component.ts index 7f7de632dd..5eda1372eb 100644 --- a/src/app/shared/form/builder/ds-dynamic-form-ui/models/scrollable-dropdown/dynamic-scrollable-dropdown.component.ts +++ b/src/app/shared/form/builder/ds-dynamic-form-ui/models/scrollable-dropdown/dynamic-scrollable-dropdown.component.ts @@ -48,7 +48,6 @@ export class DsDynamicScrollableDropdownComponent extends DynamicFormControlComp } ngOnInit() { - // console.log('ngOnInit', this.model, this.model.value); this.searchOptions = new IntegrationSearchOptions( this.model.authorityOptions.scope, this.model.authorityOptions.name, @@ -66,7 +65,6 @@ export class DsDynamicScrollableDropdownComponent extends DynamicFormControlComp }), first()) .subscribe((object: IntegrationData) => { - // console.log('ngOnInit subscribe', object, this.model, this.model.value); this.optionsList = object.payload; if (this.model.value) { this.setCurrentValue(this.model.value);