-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: optimze menu mgmt * fix: add URI fragments to address tabs * fix: add navigation actions in menu * fix: code cleanup and id harmonization * fix: tests * fix: package-lock.json * fix: tests and switch back to Libs 5.13.0
- Loading branch information
Showing
25 changed files
with
264 additions
and
190 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
<ul class="ml-0 sm:ml-6 list-none flex flex-row gap-4 text-xs m-0 p-0" *ngIf="menuItems$ | async as menuItems"> | ||
<li *ngFor="let item of menuItems; let i = index"> | ||
<a id="footer-{{ item.id }}-href" *ngIf="!item.routerLink && item.url" [attr.href]="item.url"> {{ item.label }} </a> | ||
<a id="footer-{{ item.id }}-router" *ngIf="item.routerLink" [routerLink]="item.routerLink"> {{ item.label }} </a> | ||
<ul | ||
*ngIf="menuItems$ | async as menuItems" | ||
class="m-0 p-0 ml-2 sm:ml-6 text-xs list-none flex flex-row column-gap-3 row-gap-2" | ||
> | ||
<li *ngFor="let item of menuItems"> | ||
<a | ||
id="ws_footer_{{ item.id?.toLocaleLowerCase() }}_href" | ||
*ngIf="!item.routerLink && item.url" | ||
[attr.href]="item.url" | ||
> | ||
{{ item.label }} | ||
</a> | ||
<a id="ws_footer_{{ item.id?.toLocaleLowerCase() }}_link" *ngIf="item.routerLink" [routerLink]="item.routerLink"> | ||
{{ item.label }} | ||
</a> | ||
</li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/app/remotes/user-avatar-menu/user-avatar-menu.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/app/remotes/user-avatar-menu/user-avatar-menu.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.