Browse Source

A text truncation feature has been added to improve the display of long texts

pull/15426/head
Maksym Tsymbarov 2 months ago
committed by Vladyslav Prykhodko
parent
commit
2d43d6895f
  1. 2
      ui-ngx/src/app/modules/home/components/alarm/alarm-assignee-panel.component.html

2
ui-ngx/src/app/modules/home/components/alarm/alarm-assignee-panel.component.html

@ -42,7 +42,7 @@
<div class="user-display-name flex flex-col gap-0.5">
<span *ngIf="user.firstName || user.lastName"
[innerHTML]="getFullName(user) | highlight:searchText"></span>
<span [innerHTML]="user.email | highlight:searchText"></span>
<span [innerHTML]="user.email | highlight:searchText" tbTruncateWithTooltip></span>
</div>
</mat-option>
<mat-option *ngIf="!(filteredUsers | async)?.length" [value]="null" class="tb-not-found">

Loading…
Cancel
Save