diff --git a/public/app/features/alerting/unified/MenuItemPauseRule.tsx b/public/app/features/alerting/unified/components/MenuItemPauseRule.tsx similarity index 100% rename from public/app/features/alerting/unified/MenuItemPauseRule.tsx rename to public/app/features/alerting/unified/components/MenuItemPauseRule.tsx diff --git a/public/app/features/alerting/unified/components/rule-viewer/Actions.tsx b/public/app/features/alerting/unified/components/rule-viewer/Actions.tsx index 2bfdc1bef25..3c2bd1f6c22 100644 --- a/public/app/features/alerting/unified/components/rule-viewer/Actions.tsx +++ b/public/app/features/alerting/unified/components/rule-viewer/Actions.tsx @@ -3,7 +3,7 @@ import React from 'react'; import { AppEvents } from '@grafana/data'; import { Dropdown, LinkButton, Menu } from '@grafana/ui'; import appEvents from 'app/core/app_events'; -import MenuItemPauseRule from 'app/features/alerting/unified/MenuItemPauseRule'; +import MenuItemPauseRule from 'app/features/alerting/unified/components/MenuItemPauseRule'; import { CombinedRule, RuleIdentifier } from 'app/types/unified-alerting'; import { AlertRuleAction, useAlertRuleAbility } from '../../hooks/useAbilities'; diff --git a/public/app/features/alerting/unified/components/rules/RuleActionsButtons.tsx b/public/app/features/alerting/unified/components/rules/RuleActionsButtons.tsx index ee7601b2a47..d8ea8bb93a9 100644 --- a/public/app/features/alerting/unified/components/rules/RuleActionsButtons.tsx +++ b/public/app/features/alerting/unified/components/rules/RuleActionsButtons.tsx @@ -17,7 +17,7 @@ import { Stack, } from '@grafana/ui'; import { useAppNotification } from 'app/core/copy/appNotification'; -import MenuItemPauseRule from 'app/features/alerting/unified/MenuItemPauseRule'; +import MenuItemPauseRule from 'app/features/alerting/unified/components/MenuItemPauseRule'; import { INSTANCES_DISPLAY_LIMIT } from 'app/features/alerting/unified/components/rules/RuleDetails'; import { useRulesFilter } from 'app/features/alerting/unified/hooks/useFilteredRules'; import { useDispatch } from 'app/types';