diff --git a/libs/feature/editor/src/lib/components/wizard/wizard.component.html b/libs/feature/editor/src/lib/components/wizard/wizard.component.html index 1d9f8d3ac1..213879a053 100644 --- a/libs/feature/editor/src/lib/components/wizard/wizard.component.html +++ b/libs/feature/editor/src/lib/components/wizard/wizard.component.html @@ -1,9 +1,5 @@ -<div class="pl-5 pt-24 flex flex-1 flex-col justify-between"> - <div - #wizardFields - class="flex-1 flex" - *ngFor="let config of configuration; let i = index" - > +<div class="pl-5 pt-24 flex flex-1 flex-col justify-between" #wizardFields> + <div class="flex-1 flex" *ngFor="let config of configuration; let i = index"> <gn-ui-wizard-field [wizardFieldConfig]="config"></gn-ui-wizard-field> </div> </div>