The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/dashboard/components/PanelEditor/PanelNotSupported.tsx

31 lines
827 B

import { useCallback } from 'react';
import { locationService } from '@grafana/runtime';
import { Button, Stack } from '@grafana/ui';
import { PanelEditorTabId } from './types';
export interface Props {
message: string;
}
export function PanelNotSupported({ message }: Props): JSX.Element {
const onBackToQueries = useCallback(() => {
locationService.partial({ tab: PanelEditorTabId.Query });
}, []);
return (
<div style={{ marginTop: '100px' }}>
<Stack direction="row" justifyContent="center">
<Stack direction="column" gap={2}>
<h2>{message}</h2>
<div>
<Button size="md" variant="secondary" icon="arrow-left" onClick={onBackToQueries}>
Go back to Queries
</Button>
</div>
</Stack>
</Stack>
</div>
);
}