Skip to content
This repository was archived by the owner on Jun 18, 2023. It is now read-only.

Commit 25229d0

Browse files
timonbackstavshamir
authored andcommitted
bugfix: Return raw boolean to prevent a tag redirect
1 parent b7f5438 commit 25229d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/info/info.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export class InfoComponent implements OnInit {
2626
});
2727
}
2828

29-
async download(): Promise<Boolean> {
29+
download(): Boolean {
3030
var json = JSON.stringify(this.asyncApiData, null, 2);
3131
var bytes = new TextEncoder().encode(json);
3232
var blob = new Blob([bytes], { type: 'application/json' });

0 commit comments

Comments
 (0)