Skip to content

Commit caf5a39

Browse files
committed
Merge branch 'feat/save_and_load' of https://github.com/Geode-solutions/OpenGeodeWeb-Front into feat/save_and_load
2 parents 22a67fe + 35c75dd commit caf5a39

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

composables/project_manager.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ export function useProjectManager() {
2828
throw new Error(`Export failed: ${response.statusText}`)
2929
}
3030
const blob = await response.blob()
31-
const filename =
32-
response.headers.get("new-file-name")
31+
const filename = response.headers.get("new-file-name")
3332
const urlObject = URL.createObjectURL(blob)
3433
const a = document.createElement("a")
3534
a.href = urlObject
@@ -63,4 +62,4 @@ export function useProjectManager() {
6362
}
6463

6564
return { exportProject, importProjectFile }
66-
}
65+
}

0 commit comments

Comments
 (0)