Sets the subtitle as a second line in agenda

This commit is contained in:
GabrielMeyer 2019-10-29 16:21:52 +01:00
parent 8335662e9b
commit 0c4bcd4bd8
1 changed files with 5 additions and 5 deletions

View File

@ -35,14 +35,14 @@
[routerLink]="getDetailUrl(item)"
*ngIf="!isMultiSelect"
></a>
<div [ngStyle]="{ 'margin-left': item.level * 25 + 'px' }" class="innerTable ellipsis-overflow">
<div [ngStyle]="{ 'margin-left': item.level * 25 + 'px' }" class="innerTable">
<os-icon-container [noWrap]="true" [icon]="item.closed ? 'check' : null" size="large">
<span>
<div class="ellipsis-overflow">
{{ item.getListTitle() }}
</span>
<span *ngIf="showSubtitle" class="subtitle ">
</div>
<div *ngIf="showSubtitle" class="subtitle ellipsis-overflow">
{{ item.getSubtitle() }}
</span>
</div>
</os-icon-container>
</div>
</div>