Submit
Path:
~
/
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
library-panels
/
components
/
UnlinkModal
/
File Content:
UnlinkModal.tsx
import React from 'react'; import { ConfirmModal } from '@grafana/ui'; interface Props { isOpen: boolean; onConfirm: () => void; onDismiss: () => void; } export const UnlinkModal = ({ isOpen, onConfirm, onDismiss }: Props) => { return ( <ConfirmModal title="Do you really want to unlink this panel?" icon="question-circle" body="If you unlink this panel, you will be able to edit it without affecting any other dashboards. However, once you make a change you will not be able to revert to its original reusable panel." confirmText="Yes, unlink" onConfirm={() => { onConfirm(); onDismiss(); }} onDismiss={onDismiss} isOpen={isOpen} /> ); };
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
UnlinkModal.tsx
737 bytes
0644
N4ST4R_ID | Naxtarrr