aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/follows/followers-list/followers-list.component.html
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-09-26 14:46:54 +0200
committerChocobozzz <me@florianbigard.com>2018-09-26 14:50:39 +0200
commit3827c3b3488845f4235714e92eea439423df2909 (patch)
tree2254b6ab4745099730c384110665fb11c5e82f52 /client/src/app/+admin/follows/followers-list/followers-list.component.html
parent4a216666e7f353e638c6927a9ff0c8fce4e94014 (diff)
downloadPeerTube-3827c3b3488845f4235714e92eea439423df2909.tar.gz
PeerTube-3827c3b3488845f4235714e92eea439423df2909.tar.zst
PeerTube-3827c3b3488845f4235714e92eea439423df2909.zip
Fix quota translations
Diffstat (limited to 'client/src/app/+admin/follows/followers-list/followers-list.component.html')
-rw-r--r--client/src/app/+admin/follows/followers-list/followers-list.component.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/app/+admin/follows/followers-list/followers-list.component.html b/client/src/app/+admin/follows/followers-list/followers-list.component.html
index 1a6ed616a..5645a60cc 100644
--- a/client/src/app/+admin/follows/followers-list/followers-list.component.html
+++ b/client/src/app/+admin/follows/followers-list/followers-list.component.html
@@ -19,7 +19,10 @@
19 <td>{{ follow.score }}</td> 19 <td>{{ follow.score }}</td>
20 <td>{{ follow.follower.name }}</td> 20 <td>{{ follow.follower.name }}</td>
21 <td>{{ follow.follower.host }}</td> 21 <td>{{ follow.follower.host }}</td>
22 <td>{{ follow.state }}</td> 22
23 <td *ngIf="follow.state === 'accepted'" i18n>Accepted</td>
24 <td *ngIf="follow.state === 'pending'" i18n>Pending</td>
25
23 <td>{{ follow.createdAt }}</td> 26 <td>{{ follow.createdAt }}</td>
24 </tr> 27 </tr>
25 </ng-template> 28 </ng-template>