Add video channel and video thumbnail, rework video appearance in row
[oweals/peertube.git] / client / src / app / +admin / moderation / instance-blocklist / instance-server-blocklist.component.html
index 075be8498aac1ad4bfb62e32119afaa54f8c7105..19b33a0f50b0580d1ea7aa28b4ad27974282b42e 100644 (file)
 
   <ng-template pTemplate="body" let-serverBlock>
     <tr>
-      <td>{{ serverBlock.blockedServer.host }}</td>
+      <td>
+        <a [href]="'https://' + serverBlock.blockedServer.host" i18n-title title="Open instance in a new tab" target="_blank" rel="noopener noreferrer">
+          {{ serverBlock.blockedServer.host }}
+          <span class="glyphicon glyphicon-new-window"></span>
+        </a>
+      </td>
       <td>{{ serverBlock.createdAt }}</td>
       <td class="action-cell">
         <button class="unblock-button" (click)="unblockServer(serverBlock)" i18n>Unmute</button>