Skip to content

Commit

Permalink
Fixed invalid html structure the ExpandableNavbarSectionComponent had…
Browse files Browse the repository at this point in the history
… an ul tag containing non-li tags
  • Loading branch information
alexandrevryghem committed Sep 29, 2023
1 parent 58d31dd commit e52fad2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
</a>
<ul @slide *ngIf="(active | async)" (click)="deactivateSection($event)"
class="m-0 shadow-none border-top-0 dropdown-menu show">
<ng-container *ngFor="let subSection of (subSections$ | async)">
<li *ngFor="let subSection of (subSections$ | async)">
<ng-container
*ngComponentOutlet="(sectionMap$ | async).get(subSection.id).component; injector: (sectionMap$ | async).get(subSection.id).injector;"></ng-container>
</ng-container>
</li>
</ul>
</div>

0 comments on commit e52fad2

Please sign in to comment.