Skip to content

Commit

Permalink
immediately open Level0 after repair query dialog, fixes #682
Browse files Browse the repository at this point in the history
  • Loading branch information
tyrasd committed Jan 15, 2024
1 parent 8db5c43 commit 6de7646
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions js/ide.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2095,13 +2095,15 @@ class IDE {
const query = await this.getQuery();
exportToLevel0.unbind("click");
exportToLevel0[0].href = constructLevel0Link(query);
window.open(exportToLevel0[0].href, "_blank");
}
},
{
name: i18n.t("dialog.continue_anyway"),
callback: () => {
exportToLevel0.unbind("click");
exportToLevel0[0].href = constructLevel0Link(query);
window.open(exportToLevel0[0].href, "_blank");
}
}
];
Expand Down

0 comments on commit 6de7646

Please sign in to comment.