Skip to content

Commit 29dae92

Browse files
authored
fix: DM copy changes COMPASS-10035 (#7648)
1 parent e6bafd6 commit 29dae92

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/compass-data-modeling/src/components/diagram-editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ const DiagramContent: React.FunctionComponent<{
508508
<h4>Questions about your data?</h4>
509509
This diagram was generated based on a sample of documents from{' '}
510510
{database ?? 'a database'}. Changes made to the diagram will not
511-
impact your data
511+
impact your data.
512512
</Banner>
513513
)}
514514
<DiagramComponent

packages/compass-data-modeling/src/components/import-diagram-button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const ImportDiagramButton = ({
2727
}}
2828
trigger={({ onClick }) => (
2929
<Button {...buttonProps} onClick={onClick}>
30-
Import Diagram
30+
Import diagram
3131
</Button>
3232
)}
3333
/>

packages/compass-data-modeling/src/store/diagram.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ export function deleteDiagram(
674674
return async (dispatch, getState, { dataModelStorage }) => {
675675
const confirmed = await showConfirmation({
676676
title: 'Are you sure you want to delete this diagram?',
677-
description: 'This action can not be undone',
677+
description: 'This action can not be undone.',
678678
variant: 'danger',
679679
});
680680
if (!confirmed) {

0 commit comments

Comments
 (0)