diff options
author | Chocobozzz <me@florianbigard.com> | 2022-09-28 15:43:59 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-09-28 15:43:59 +0200 |
commit | 77662dae240e6a60e0c5e659e79d48df8d6a5e99 (patch) | |
tree | 63c5b877eebf8f9a8f253b7a268c17ccef95a579 /client/src/app/menu/menu.component.html | |
parent | 251ce26db364e1d7468b43ca917dee648a9ad133 (diff) | |
download | PeerTube-77662dae240e6a60e0c5e659e79d48df8d6a5e99.tar.gz PeerTube-77662dae240e6a60e0c5e659e79d48df8d6a5e99.tar.zst PeerTube-77662dae240e6a60e0c5e659e79d48df8d6a5e99.zip |
Add channels link in menu
Diffstat (limited to 'client/src/app/menu/menu.component.html')
-rw-r--r-- | client/src/app/menu/menu.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/menu/menu.component.html b/client/src/app/menu/menu.component.html index c1e5f79a6..c5d08ab75 100644 --- a/client/src/app/menu/menu.component.html +++ b/client/src/app/menu/menu.component.html | |||
@@ -88,7 +88,7 @@ | |||
88 | </a> | 88 | </a> |
89 | 89 | ||
90 | <a class="menu-link" routerLink="/my-library" routerLinkActive="active" #libraryLink (click)="onActiveLinkScrollToAnchor(libraryLink)"> | 90 | <a class="menu-link" routerLink="/my-library" routerLinkActive="active" #libraryLink (click)="onActiveLinkScrollToAnchor(libraryLink)"> |
91 | <my-global-icon iconName="channel" aria-hidden="true"></my-global-icon> | 91 | <my-global-icon class="channel-icon" iconName="channel" aria-hidden="true"></my-global-icon> |
92 | <ng-container i18n>My library</ng-container> | 92 | <ng-container i18n>My library</ng-container> |
93 | </a> | 93 | </a> |
94 | 94 | ||
@@ -111,7 +111,7 @@ | |||
111 | <div i18n class="block-title">{{ menuSection.title }}</div> | 111 | <div i18n class="block-title">{{ menuSection.title }}</div> |
112 | 112 | ||
113 | <a class="menu-link" *ngFor="let link of menuSection.links" [routerLink]="link.path" routerLinkActive="active"> | 113 | <a class="menu-link" *ngFor="let link of menuSection.links" [routerLink]="link.path" routerLinkActive="active"> |
114 | <my-global-icon *ngIf="link.icon" [iconName]="link.icon" aria-hidden="true"></my-global-icon> | 114 | <my-global-icon *ngIf="link.icon" [iconName]="link.icon" [ngClass]="link.iconClass" aria-hidden="true"></my-global-icon> |
115 | <ng-container>{{ link.shortLabel }}</ng-container> | 115 | <ng-container>{{ link.shortLabel }}</ng-container> |
116 | </a> | 116 | </a> |
117 | </div> | 117 | </div> |