Skip to content

Commit 55b192b

Browse files
fix: TTL-928 change if condition (#1005)
1 parent 66c1867 commit 55b192b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/modules/reports/components/time-entries-table/time-entries-table.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@
6262
</td>
6363
<td class="col lg-scroll">{{ entry.description }}</td>
6464
<td class="col lg-scroll">
65-
<ng-container *ngIf="entry.technologies.length > 0">
65+
<ng-container *ngIf="entry.technologies">
6666
<div *ngFor="let technology of entry.technologies" class="badge bg-secondary text-wrap">
67-
{{ technology }}
67+
{{ technology }}
6868
</div>
6969
</ng-container>
7070
</td>

0 commit comments

Comments
 (0)