Skip to content

Commit

Permalink
Append 'Copy' to the title in the clone dialog so by default it doesn…
Browse files Browse the repository at this point in the history
…'t clash
  • Loading branch information
stacey-gammon committed May 17, 2017
1 parent a7256da commit 3bbd73b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function showCloneModal(onClone, title) {
};
document.body.appendChild(container);
const element = (
<DashboardCloneModal onClone={onCloneConfirmed} onClose={closeModal} title={title}></DashboardCloneModal>
<DashboardCloneModal onClone={onCloneConfirmed} onClose={closeModal} title={title + ' Copy'}></DashboardCloneModal>
);
ReactDOM.render(element, container);
}

0 comments on commit 3bbd73b

Please sign in to comment.