Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: TTL-928 change if condition
  • Loading branch information
Santiago220991 committed Aug 29, 2023
commit c38af27eac5b4b863c0ca361dba1d7c5867da4e6
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
</td>
<td class="col lg-scroll">{{ entry.description }}</td>
<td class="col lg-scroll">
<ng-container *ngIf="entry.technologies.length > 0">
<ng-container *ngIf="entry.technologies">
<div *ngFor="let technology of entry.technologies" class="badge bg-secondary text-wrap">
{{ technology }}
{{ technology }}
</div>
</ng-container>
</td>
Expand Down