diff options
author | Chocobozzz <me@florianbigard.com> | 2019-04-08 15:47:44 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-04-08 15:47:44 +0200 |
commit | 0dc647775881eb1378b213a530996cd096de24ea (patch) | |
tree | 2b9042cb56ecb876d5c707bdf550fa1303df047c /client/src/app/+my-account | |
parent | 14893eb71cb2d4ca47e07589c81958863603aba4 (diff) | |
download | PeerTube-0dc647775881eb1378b213a530996cd096de24ea.tar.gz PeerTube-0dc647775881eb1378b213a530996cd096de24ea.tar.zst PeerTube-0dc647775881eb1378b213a530996cd096de24ea.zip |
Add delete/manual approval instance followers in client
Diffstat (limited to 'client/src/app/+my-account')
-rw-r--r-- | client/src/app/+my-account/my-account-ownership/my-account-ownership.component.html | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/client/src/app/+my-account/my-account-ownership/my-account-ownership.component.html b/client/src/app/+my-account/my-account-ownership/my-account-ownership.component.html index 5709e9f54..c5fd3ccb9 100644 --- a/client/src/app/+my-account/my-account-ownership/my-account-ownership.component.html +++ b/client/src/app/+my-account/my-account-ownership/my-account-ownership.component.html | |||
@@ -30,8 +30,7 @@ | |||
30 | </a> | 30 | </a> |
31 | </td> | 31 | </td> |
32 | <td> | 32 | <td> |
33 | <a [href]="videoChangeOwnership.video.url" i18n-title title="Go to the video" target="_blank" | 33 | <a [href]="videoChangeOwnership.video.url" i18n-title title="Go to the video" target="_blank" rel="noopener noreferrer"> |
34 | rel="noopener noreferrer"> | ||
35 | {{ videoChangeOwnership.video.name }} | 34 | {{ videoChangeOwnership.video.name }} |
36 | </a> | 35 | </a> |
37 | </td> | 36 | </td> |
@@ -39,16 +38,12 @@ | |||
39 | <td i18n>{{ videoChangeOwnership.status }}</td> | 38 | <td i18n>{{ videoChangeOwnership.status }}</td> |
40 | <td class="action-cell"> | 39 | <td class="action-cell"> |
41 | <ng-container *ngIf="videoChangeOwnership.status === 'WAITING'"> | 40 | <ng-container *ngIf="videoChangeOwnership.status === 'WAITING'"> |
42 | <my-button i18n label="Accept" | 41 | <my-button i18n-label label="Accept" icon="tick" (click)="openAcceptModal(videoChangeOwnership)"></my-button> |
43 | icon="tick" | 42 | <my-button i18n-label label="Refuse" icon="cross" (click)="refuse(videoChangeOwnership)"></my-button> |
44 | (click)="openAcceptModal(videoChangeOwnership)"></my-button> | ||
45 | <my-button i18n label="Refuse" | ||
46 | icon="cross" | ||
47 | (click)="refuse(videoChangeOwnership)">Refuse</my-button> | ||
48 | </ng-container> | 43 | </ng-container> |
49 | </td> | 44 | </td> |
50 | </tr> | 45 | </tr> |
51 | </ng-template> | 46 | </ng-template> |
52 | </p-table> | 47 | </p-table> |
53 | 48 | ||
54 | <my-account-accept-ownership #myAccountAcceptOwnershipComponent (accepted)="accepted()"></my-account-accept-ownership> \ No newline at end of file | 49 | <my-account-accept-ownership #myAccountAcceptOwnershipComponent (accepted)="accepted()"></my-account-accept-ownership> |