diff options
author | Chocobozzz <me@florianbigard.com> | 2020-05-11 18:05:16 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-05-11 18:05:16 +0200 |
commit | 5ff523664fda3acf83e319a7c08cd14af0025e99 (patch) | |
tree | bd876a029fb155fc517819a93776e0c8bb11f340 /client/src/app/+admin | |
parent | 72efdda586489bf59ac7df12ff9e75a926f1f048 (diff) | |
download | PeerTube-5ff523664fda3acf83e319a7c08cd14af0025e99.tar.gz PeerTube-5ff523664fda3acf83e319a7c08cd14af0025e99.tar.zst PeerTube-5ff523664fda3acf83e319a7c08cd14af0025e99.zip |
Fix user dropdown overflow
Diffstat (limited to 'client/src/app/+admin')
-rw-r--r-- | client/src/app/+admin/follows/following-list/following-list.component.html | 2 | ||||
-rw-r--r-- | client/src/app/+admin/users/user-list/user-list.component.html | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/client/src/app/+admin/follows/following-list/following-list.component.html b/client/src/app/+admin/follows/following-list/following-list.component.html index 059c07295..61b813305 100644 --- a/client/src/app/+admin/follows/following-list/following-list.component.html +++ b/client/src/app/+admin/follows/following-list/following-list.component.html | |||
@@ -27,7 +27,7 @@ | |||
27 | <th style="width: 100px;" i18n pSortableColumn="state">State <p-sortIcon field="state"></p-sortIcon></th> | 27 | <th style="width: 100px;" i18n pSortableColumn="state">State <p-sortIcon field="state"></p-sortIcon></th> |
28 | <th style="width: 150px;" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> | 28 | <th style="width: 150px;" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> |
29 | <th style="width: 160px;" i18n pSortableColumn="redundancyAllowed">Redundancy allowed <p-sortIcon field="redundancyAllowed"></p-sortIcon></th> | 29 | <th style="width: 160px;" i18n pSortableColumn="redundancyAllowed">Redundancy allowed <p-sortIcon field="redundancyAllowed"></p-sortIcon></th> |
30 | <th style="width: 100px;"></th> | 30 | <th style="width: 150px;"></th> |
31 | </tr> | 31 | </tr> |
32 | </ng-template> | 32 | </ng-template> |
33 | 33 | ||
diff --git a/client/src/app/+admin/users/user-list/user-list.component.html b/client/src/app/+admin/users/user-list/user-list.component.html index 768a3034d..6caf37212 100644 --- a/client/src/app/+admin/users/user-list/user-list.component.html +++ b/client/src/app/+admin/users/user-list/user-list.component.html | |||
@@ -106,7 +106,10 @@ | |||
106 | <td [title]="user.createdAt">{{ user.createdAt | date: 'short' }}</td> | 106 | <td [title]="user.createdAt">{{ user.createdAt | date: 'short' }}</td> |
107 | 107 | ||
108 | <td class="action-cell"> | 108 | <td class="action-cell"> |
109 | <my-user-moderation-dropdown *ngIf="!isInSelectionMode()" [user]="user" (userChanged)="onUserChanged()" (userDeleted)="onUserChanged()"> | 109 | <my-user-moderation-dropdown |
110 | *ngIf="!isInSelectionMode()" | ||
111 | [user]="user" container="body" (userChanged)="onUserChanged()" (userDeleted)="onUserChanged()" | ||
112 | > | ||
110 | </my-user-moderation-dropdown> | 113 | </my-user-moderation-dropdown> |
111 | </td> | 114 | </td> |
112 | </tr> | 115 | </tr> |