Skip to content

Commit

Permalink
src/themes/cgspace: fix for invalid HTML in navbar
Browse files Browse the repository at this point in the history
Chase changes to navbar.

See: DSpace#2566
  • Loading branch information
alanorth committed Nov 14, 2024
1 parent 5b1d811 commit 63ffca1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/themes/cgspace/app/navbar/navbar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<li *ngIf="(isXsOrSm$ | async) && (isAuthenticated$ | async)">
<ds-user-menu [inExpandableNavbar]="true"></ds-user-menu>
</li>
<ng-container *ngFor="let section of (sections | async)">
<li *ngFor="let section of (sections | async)">
<ng-container *ngComponentOutlet="(sectionMap$ | async).get(section.id)?.component; injector: (sectionMap$ | async).get(section.id)?.injector;"></ng-container>
</ng-container>
</li>
</ul>
</div>
<div class="navbar-buttons">
Expand Down

0 comments on commit 63ffca1

Please sign in to comment.