diff --git a/client/modules/IDE/actions/project.js b/client/modules/IDE/actions/project.js index 7e436bb6..8e2fc4f3 100644 --- a/client/modules/IDE/actions/project.js +++ b/client/modules/IDE/actions/project.js @@ -139,7 +139,7 @@ export function newProject() { export function cloneProject() { return (dispatch, getState) => { const state = getState(); - const formParams = Object.assign({}, { name: state.project.name }, { files: state.files }); + const formParams = Object.assign({}, { name: `${state.project.name} copy` }, { files: state.files }); axios.post(`${ROOT_URL}/projects`, formParams, { withCredentials: true }) .then(response => { browserHistory.push(`/projects/${response.data.id}`);