Skip to content

Commit

Permalink
Added link in the error modal
Browse files Browse the repository at this point in the history
  • Loading branch information
tmayoff committed Jul 6, 2024
1 parent 1760242 commit 24ea787
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/recipe/downloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ class ErrorDialog extends Modal {
onOpen() {
this.contentEl.createEl('h4', { text: 'An error occured' });
this.contentEl.createEl('p', { text: this.message });
let div = this.contentEl.createEl('div', {
text: 'Please make an issue <a href="https://github.com/tmayoff/recipe-rs/issues/new">here</a> so I can help resolve the issue',
});
}
this.contentEl.createEl('a', {
href: "https://github.com/tmayoff/recipe-rs/issues/new",
text: 'Please make an issue here so I can help resolve the issue',
}); }

onClose() {
this.contentEl.empty();
Expand Down

0 comments on commit 24ea787

Please sign in to comment.