Skip to content

Commit

Permalink
fix save bug
Browse files Browse the repository at this point in the history
  • Loading branch information
patchworksapp committed Mar 17, 2022
1 parent ef118b9 commit cff709d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/workspace.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ class Actions {
* user gesture save the current test as a zip file */
async saveZip() {
Test._saveBlob = await Test.current.createZipBlob();
await Test.current.saveZipFile(Test._saveBlob);
let fileHandle = await Test.current.saveZipFile(Test._saveBlob);

// the name may have changed
if (fileHandle) {
Expand Down

0 comments on commit cff709d

Please sign in to comment.