Move MenuItemPaused to components folder

This commit is contained in:
Tom Ratcliffe 2024-03-26 17:47:37 +00:00 committed by Tom Ratcliffe
parent 1e54899c6d
commit 31fb80b29a
3 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ import React from 'react';
import { AppEvents } from '@grafana/data'; import { AppEvents } from '@grafana/data';
import { Dropdown, LinkButton, Menu } from '@grafana/ui'; import { Dropdown, LinkButton, Menu } from '@grafana/ui';
import appEvents from 'app/core/app_events'; 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 { CombinedRule, RuleIdentifier } from 'app/types/unified-alerting';
import { AlertRuleAction, useAlertRuleAbility } from '../../hooks/useAbilities'; import { AlertRuleAction, useAlertRuleAbility } from '../../hooks/useAbilities';

View File

@ -17,7 +17,7 @@ import {
Stack, Stack,
} from '@grafana/ui'; } from '@grafana/ui';
import { useAppNotification } from 'app/core/copy/appNotification'; 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 { INSTANCES_DISPLAY_LIMIT } from 'app/features/alerting/unified/components/rules/RuleDetails';
import { useRulesFilter } from 'app/features/alerting/unified/hooks/useFilteredRules'; import { useRulesFilter } from 'app/features/alerting/unified/hooks/useFilteredRules';
import { useDispatch } from 'app/types'; import { useDispatch } from 'app/types';