mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Migration/AlertList: Migrates AlertList from AngularJS to React (#31872)
* Migration/AlertList: Migrates AlertList from AngularJS to React
This commit is contained in:
@@ -174,3 +174,24 @@ export interface AlertDefinitionUiState {
|
||||
rightPaneSize: number;
|
||||
topPaneSize: number;
|
||||
}
|
||||
|
||||
export interface AnnotationItemDTO {
|
||||
id: number;
|
||||
alertId: number;
|
||||
alertName: string;
|
||||
dashboardId: number;
|
||||
panelId: number;
|
||||
userId: number;
|
||||
newState: string;
|
||||
prevState: string;
|
||||
created: number;
|
||||
updated: number;
|
||||
time: number;
|
||||
timeEnd: number;
|
||||
text: string;
|
||||
tags: string[];
|
||||
login: string;
|
||||
email: string;
|
||||
avatarUrl: string;
|
||||
data: any;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user