mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
22ac0fc3cd
* HelpModal: Migrates to new style * Alerting: Migrates how to do alerting modal to React * ApiKeysModal: migrates to new theme * Dashboard: View dasboard json modal migrated to React and new theme * PluginPage: migrates update plugin modal to react and new theme * Chore: deprecates events and functions * Simplify help modal * Updated json modal to use Modal.ButtonRow * Tweak to api key design * Tests: updates snapshot Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
22 lines
771 B
TypeScript
22 lines
771 B
TypeScript
import { Modal, VerticalGroup } from '@grafana/ui';
|
|
import React from 'react';
|
|
|
|
export interface AlertHowToModalProps {
|
|
onDismiss: () => void;
|
|
}
|
|
|
|
export function AlertHowToModal({ onDismiss }: AlertHowToModalProps): JSX.Element {
|
|
return (
|
|
<Modal title="Adding an Alert" isOpen onDismiss={onDismiss} onClickBackdrop={onDismiss}>
|
|
<VerticalGroup spacing="sm">
|
|
<img src="public/img/alert_howto_new.png" alt="link to how to alert image" />
|
|
<p>
|
|
Alerts are added and configured in the Alert tab of any dashboard graph panel, letting you build and visualize
|
|
an alert using existing queries.
|
|
</p>
|
|
<p>Remember to save the dashboard to persist your alert rule changes.</p>
|
|
</VerticalGroup>
|
|
</Modal>
|
|
);
|
|
}
|