UI: Fix error message in Alarm widget preview when opening Assign field dropdown

This commit is contained in:
Vladyslav_Prykhodko 2025-07-25 10:54:40 +03:00
parent 203a2c8409
commit 3b5b3fe143

View File

@ -1187,8 +1187,9 @@ export class AlarmsTableWidgetComponent extends PageComponent implements OnInit,
}
openAlarmAssigneePanel($event: Event, entity: AlarmInfo) {
if ($event) {
$event.stopPropagation();
$event?.stopPropagation();
if (entity.id.id === NULL_UUID) {
return
}
const target = $event.target || $event.currentTarget;
const config = new OverlayConfig();