Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/download.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class DownloadFileService extends BaseHttpService {
link.download = filename;
link.style.display = 'none';
document.body.appendChild(link);
link.click();
link.dispatchEvent(new MouseEvent('click'));
window.URL.revokeObjectURL(href);
link.remove();
}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luxbss/gengen",
"version": "1.2.8",
"version": "1.2.9",
"description": "Tool for generating models and Angular services based on OpenAPIs and Swagger's JSON",
"bin": {
"gengen": "./bin/index.js"
Expand Down Expand Up @@ -47,4 +47,4 @@
"ts-jest": "29.1.1",
"typescript": "5.2.2"
}
}
}