Skip to content

Commit

Permalink
Add scroll to table images
Browse files Browse the repository at this point in the history
  • Loading branch information
minottic committed Nov 15, 2024
1 parent 129da19 commit fe171c0
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@

<ng-container matColumnDef="thumbnail">
<th mat-header-cell cdkDrag *matHeaderCellDef>Thumbnail </th>
<td mat-cell *matCellDef="let row"><img [src]="getImage(row.thumbnail)"/> </td>
<td mat-cell *matCellDef="let row">
<div class="scrollable-text">
<img [src]="getImage(row.thumbnail)"/>
</div>
</td>
</ng-container>

<ng-container matColumnDef="actions">
Expand Down

0 comments on commit fe171c0

Please sign in to comment.