diff options
Diffstat (limited to 'client/src/app/search/search.component.html')
-rw-r--r-- | client/src/app/search/search.component.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/search/search.component.html b/client/src/app/search/search.component.html index 83d014987..0d09ebbe6 100644 --- a/client/src/app/search/search.component.html +++ b/client/src/app/search/search.component.html | |||
@@ -27,14 +27,14 @@ | |||
27 | </div> | 27 | </div> |
28 | 28 | ||
29 | <div *ngFor="let videoChannel of videoChannels" class="entry video-channel"> | 29 | <div *ngFor="let videoChannel of videoChannels" class="entry video-channel"> |
30 | <a [routerLink]="[ '/video-channels', videoChannel.name ]"> | 30 | <a [routerLink]="[ '/video-channels', videoChannel.nameWithHost ]"> |
31 | <img [src]="videoChannel.avatarUrl" alt="Avatar" /> | 31 | <img [src]="videoChannel.avatarUrl" alt="Avatar" /> |
32 | </a> | 32 | </a> |
33 | 33 | ||
34 | <div class="video-channel-info"> | 34 | <div class="video-channel-info"> |
35 | <a [routerLink]="[ '/video-channels', videoChannel.name ]" class="video-channel-names"> | 35 | <a [routerLink]="[ '/video-channels', videoChannel.nameWithHost ]" class="video-channel-names"> |
36 | <div class="video-channel-display-name">{{ videoChannel.displayName }}</div> | 36 | <div class="video-channel-display-name">{{ videoChannel.displayName }}</div> |
37 | <div class="video-channel-name">{{ videoChannel.name }}</div> | 37 | <div class="video-channel-name">{{ videoChannel.nameWithHost }}</div> |
38 | </a> | 38 | </a> |
39 | 39 | ||
40 | <div i18n class="video-channel-followers">{{ videoChannel.followersCount }} subscribers</div> | 40 | <div i18n class="video-channel-followers">{{ videoChannel.followersCount }} subscribers</div> |