aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+search/search.component.html
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-04-01 16:54:20 +0200
committerChocobozzz <me@florianbigard.com>2021-04-01 16:54:49 +0200
commit4429a4a6e730583809461922859d9275c3e59602 (patch)
tree759015ee277ae9d1a5f795e4229ab28c965ac513 /client/src/app/+search/search.component.html
parent4d5e572f52e000034abb076e4bf7d7044d704f94 (diff)
downloadPeerTube-4429a4a6e730583809461922859d9275c3e59602.tar.gz
PeerTube-4429a4a6e730583809461922859d9275c3e59602.tar.zst
PeerTube-4429a4a6e730583809461922859d9275c3e59602.zip
Responsive search
Diffstat (limited to 'client/src/app/+search/search.component.html')
-rw-r--r--client/src/app/+search/search.component.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+search/search.component.html b/client/src/app/+search/search.component.html
index 74c6839e1..65d4b6ecd 100644
--- a/client/src/app/+search/search.component.html
+++ b/client/src/app/+search/search.component.html
@@ -33,11 +33,11 @@
33 33
34 <ng-container *ngFor="let result of results"> 34 <ng-container *ngFor="let result of results">
35 <div *ngIf="isVideoChannel(result)" class="entry video-channel"> 35 <div *ngIf="isVideoChannel(result)" class="entry video-channel">
36 <a *ngIf="!isExternalChannelUrl()" [routerLink]="getChannelUrl(result)"> 36 <a class="link-avatar" *ngIf="!isExternalChannelUrl()" [routerLink]="getChannelUrl(result)">
37 <img [src]="result.avatarUrl" alt="Avatar" /> 37 <img [src]="result.avatarUrl" alt="Avatar" />
38 </a> 38 </a>
39 39
40 <a *ngIf="isExternalChannelUrl()" [href]="getChannelUrl(result)" target="_blank"> 40 <a class="link-avatar" *ngIf="isExternalChannelUrl()" [href]="getChannelUrl(result)" target="_blank">
41 <img [src]="result.avatarUrl" alt="Avatar" /> 41 <img [src]="result.avatarUrl" alt="Avatar" />
42 </a> 42 </a>
43 43