diff --git a/public/app/features/alerting/unified/components/rules/AlertStateTag.tsx b/public/app/features/alerting/unified/components/rules/AlertStateTag.tsx index 9c95a3a20a4..142ec8b0e1c 100644 --- a/public/app/features/alerting/unified/components/rules/AlertStateTag.tsx +++ b/public/app/features/alerting/unified/components/rules/AlertStateTag.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { AlertState } from '@grafana/data'; -import { Tag, Tooltip } from '@grafana/ui'; +import { Icon, Tooltip } from '@grafana/ui'; import { GrafanaAlertState, GrafanaAlertStateWithReason, PromAlertingRuleState } from 'app/types/unified-alerting-dto'; import { alertStateToReadable, alertStateToState } from '../../utils/rules'; @@ -17,7 +17,9 @@ export const AlertStateTag = React.memo(({ state, isPaused = false, size = 'md', if (isPaused) { return ( - + + Paused + ); }