Skip to content
This repository was archived by the owner on Mar 8, 2020. It is now read-only.

Commit 835bb37

Browse files
author
Simon Stone
authored
Fix export error (#640)
1 parent 4a7c209 commit 835bb37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/composer-playground/src/app/editor/editor.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export class EditorComponent implements OnInit {
104104
this.updatePackageInfo();
105105
this.editingPackage = false;
106106
}
107-
107+
108108
this.editorService.setCurrentFile(file);
109109
this.currentFile = file;
110110
}
@@ -238,7 +238,7 @@ export class EditorComponent implements OnInit {
238238
let file = new File([exportedData],
239239
this.clientService.getBusinessNetworkName() + '.bna',
240240
{type: 'application/octet-stream'});
241-
saveAs.saveAs(file);
241+
saveAs(file);
242242
this.alertService.successStatus$.next(this.clientService.getBusinessNetworkName() + '.bna was exported');
243243
});
244244
}

0 commit comments

Comments
 (0)