Skip to content

Commit ade9bc8

Browse files
fix(alert-management): fixed copilot suggestions
1 parent cf95a38 commit ade9bc8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

frontend/src/app/data-management/alert-management/shared/components/alert-child-column/alert-child-column.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core';
1+
import {Component, EventEmitter, Input, Output} from '@angular/core';
2+
import {UtmAlertType} from 'src/app/shared/types/alert/utm-alert.type';
23

34
@Component({
45
selector: 'app-alert-child-column',
@@ -7,7 +8,7 @@ import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core';
78
})
89
export class AlertChildColumnComponent {
910

10-
@Input() alert: any;
11+
@Input() alert: UtmAlertType;
1112
@Input() loadingChildren = false;
1213

1314
@Output() toggleExpand = new EventEmitter<any>();

frontend/src/app/shared/types/alert/utm-alert.type.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export class UtmAlertType {
3131
parentId?: string;
3232
hasChildren: boolean;
3333
expanded: boolean;
34+
echoes:number
3435
}
3536

3637
export enum AlertStatusLabelEnum {

0 commit comments

Comments
 (0)