Skip to content

Commit

Permalink
Fix saving files from subfolders
Browse files Browse the repository at this point in the history
  • Loading branch information
RangerMauve committed Oct 15, 2020
1 parent e23d9fb commit 4b60482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/containers/ProjectViewPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function ProjectViewPage() {
const core = await getCore();
const projectInstance = await core.projects.get(project);

return projectInstance.showSaveFile(name);
return projectInstance.showSaveFile(join(subpath, name));
}

async function onAddFiles(folders = false) {
Expand Down

0 comments on commit 4b60482

Please sign in to comment.