diff --git a/frontend/src/assets/styles/index.scss b/frontend/src/assets/styles/index.scss index 64037b15ef..e582f8c119 100644 --- a/frontend/src/assets/styles/index.scss +++ b/frontend/src/assets/styles/index.scss @@ -13,12 +13,10 @@ @import 'contributions'; .fade-in { - // display: none; opacity: 0; transition: opacity 0.5s ease-in; } .fade-in.active { - // display: flex; opacity: 1; } diff --git a/frontend/src/components/projectDetail/downloadOsmData.js b/frontend/src/components/projectDetail/downloadOsmData.js index 68f43723e2..2f665a8ac7 100644 --- a/frontend/src/components/projectDetail/downloadOsmData.js +++ b/frontend/src/components/projectDetail/downloadOsmData.js @@ -91,7 +91,9 @@ export const DownloadOsmData = ({ projectMappingTypes, project }) => { link.href = href; link.setAttribute( 'download', - `hotosm_project_${project.projectId}_${title}_${fileFormat?.toLowerCase()}.zip`, + `hotosm_project_${ + project.projectId + }_${title}_${feature_type}_${fileFormat?.toLowerCase()}.zip`, ); // Add the link to the document body, click it, and then remove it