Skip to content

Commit

Permalink
Merge pull request #6025 from kyoto/monitoring-state-filter-titles
Browse files Browse the repository at this point in the history
Bug 1857561: Monitoring: Fix list filter by state titles
  • Loading branch information
openshift-merge-robot committed Jul 20, 2020
2 parents 91fe08d + c5253ae commit f8ada74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/public/components/monitoring/alerting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ export const severityRowFilter: RowFilter = {
export const alertsRowFilters: RowFilter[] = [
{
defaultSelected: [AlertStates.Firing],
filterGroupName: 'Alert',
filterGroupName: 'Alert State',
items: [
{ id: AlertStates.Firing, title: 'Firing' },
{ id: AlertStates.Silenced, title: 'Silenced' },
Expand Down Expand Up @@ -1111,7 +1111,7 @@ const AlertsPage = withFallback(connect(alertsToProps)(AlertsPage_));
const rulesRowFilters: RowFilter[] = [
{
type: 'alerting-rule-active',
filterGroupName: 'Alerts',
filterGroupName: 'Rule State',
reducer: alertingRuleIsActive,
items: [
{ id: 'true', title: 'Active' },
Expand Down Expand Up @@ -1188,7 +1188,7 @@ const silencesRowFilters: RowFilter[] = [
{
defaultSelected: [SilenceStates.Active, SilenceStates.Pending],
type: 'silence-state',
filterGroupName: 'Silence',
filterGroupName: 'Silence State',
reducer: silenceState,
items: [
{ id: SilenceStates.Active, title: 'Active' },
Expand Down

0 comments on commit f8ada74

Please sign in to comment.