diff --git a/public/app/features/library-panels/components/ChangeLibraryPanelModal/ChangeLibraryPanelModal.tsx b/public/app/features/library-panels/components/ChangeLibraryPanelModal/ChangeLibraryPanelModal.tsx index af0053aba36..c6b7697c2f4 100644 --- a/public/app/features/library-panels/components/ChangeLibraryPanelModal/ChangeLibraryPanelModal.tsx +++ b/public/app/features/library-panels/components/ChangeLibraryPanelModal/ChangeLibraryPanelModal.tsx @@ -12,13 +12,15 @@ export interface ChangeLibraryPanelModalProps { export const ChangeLibraryPanelModal = ({ onConfirm, onDismiss, panel }: ChangeLibraryPanelModalProps): JSX.Element => { const isLibraryPanel = isPanelModelLibraryPanel(panel); - const title = `${isLibraryPanel ? 'Changing' : 'Change to'} library panel`; - const body = `Changing ${isLibraryPanel ? '' : 'to a'} library panel will remove any changes since last save.`; + const title = `${isLibraryPanel ? 'Changing' : 'Replace with'} library panel`; + const body = `${ + isLibraryPanel ? 'Changing' : 'Replacing with a' + } library panel will remove any changes since last save.`; return (