Skip to content
Closed
Prev Previous commit
Merge master branch into TT-589
  • Loading branch information
sbateca committed Apr 22, 2022
commit 05605071efc806697b347a994af255fc8c9ef7ee
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</thead>
<app-loading-bar *ngIf="dataSource.isLoading"></app-loading-bar>
<tbody *ngIf="!dataSource.isLoading">
<tr class="d-flex" *ngFor="let entry of dataSource.data">
<tr class="d-flex col-height" *ngFor="let entry of dataSource.data">
<td class="hidden-col">{{ entry.id }}</td>
<td class="col md-col">{{ entry.owner_email }}</td>
<td class="col sm-col">
Expand All @@ -43,8 +43,8 @@
</a>
</ng-container>
</td>
<td class="col lg-col">{{ entry.description }}</td>
<td class="col lg-col">
<td class="col lg-scroll">{{ entry.description }}</td>
<td class="col lg-scroll">
<ng-container *ngIf="entry.technologies.length > 0">
<div *ngFor="let technology of entry.technologies" class="badge bg-secondary text-wrap">
{{ technology }}
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.