2023-02-27 13:05:05 +02:00
|
|
|
<!--
|
|
|
|
|
|
2024-01-09 10:46:16 +02:00
|
|
|
Copyright © 2016-2024 The Thingsboard Authors
|
2023-02-27 13:05:05 +02:00
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
|
|
|
|
|
-->
|
2024-10-10 15:09:59 +03:00
|
|
|
<mat-form-field class="mat-block flex-1" style="margin-bottom: 25px"
|
2023-04-07 12:15:31 +03:00
|
|
|
(click)="openAlarmAssigneePanel($event, alarm)"
|
|
|
|
|
subscriptSizing="dynamic">
|
|
|
|
|
<mat-label translate>alarm.assignee</mat-label>
|
|
|
|
|
<input matInput readonly [value]="getAssignee()">
|
2024-09-19 18:52:23 +03:00
|
|
|
<span *ngIf="userAssigned; else unassigned" matPrefix class="user-avatar"
|
|
|
|
|
[style.background-color]="getAvatarBgColor(alarm.assignee)">
|
2023-04-07 12:15:31 +03:00
|
|
|
{{ getUserInitials(alarm.assignee) }}
|
|
|
|
|
</span>
|
2024-09-19 18:52:23 +03:00
|
|
|
<ng-template #unassigned>
|
|
|
|
|
<mat-icon matPrefix class="material-icons unassigned-icon">{{ alarm?.assigneeId ? 'no_accounts' : 'account_circle' }}</mat-icon>
|
|
|
|
|
</ng-template>
|
2023-04-07 12:15:31 +03:00
|
|
|
<mat-icon matSuffix>arrow_drop_down</mat-icon>
|
|
|
|
|
</mat-form-field>
|