grafana/public/app/features/alerting/AlertTabIndex.tsx

8 lines
307 B
TypeScript

import { config } from '@grafana/runtime';
import { AlertTab } from './AlertTab';
import { PanelAlertTabContent } from './unified/PanelAlertTabContent';
// route between unified and "old" alerting pages based on feature flag
export default config.featureToggles.ngalert ? PanelAlertTabContent : AlertTab;