dataset-description.component.html: [Bug fix] Removed forgotten log {{form | json}} from html.

This commit is contained in:
Konstantina Galouni 2023-06-16 14:19:07 +03:00
parent 985b3de385
commit eb4f1d23e1
1 changed files with 0 additions and 1 deletions

View File

@ -10,7 +10,6 @@
<div *ngFor="let pageFormGroup of form.get('pages')['controls']; let z = index;">
<div *ngFor="let sectionFormGroup of pageFormGroup.get('sections')['controls']; let i = index;">
<div class="row">
{{form | json}}
<app-form-section class="col-12" [form]="sectionFormGroup" [path]="z+1"
[pathName]="'pages.'+z+'.sections.'+i" [datasetProfileId]="datasetProfileId"
[linkToScroll]="linkToScroll"></app-form-section>