Alerting: Add filtering for Silences (#39109)

* Add filtering for Silences page

* Add tests Silences and SilenceEditor

* pr feedback: add field validation and test refactor

* Add test for checking content

* fix overflow for validation error message

* increase login threshold for pa11y

* Make silence filter state its own type and function
This commit is contained in:
Nathan Rodman
2021-09-20 15:32:25 -07:00
committed by GitHub
parent 1781c8ec7d
commit d03f75726b
11 changed files with 510 additions and 65 deletions

View File

@@ -133,4 +133,10 @@ export interface FilterState {
dataSource?: string;
alertState?: string;
groupBy?: string[];
silenceState?: string;
}
export interface SilenceFilterState {
queryString?: string;
silenceState?: string;
}