Skip to content

Commit

Permalink
Temporary disable clickable links
Browse files Browse the repository at this point in the history
  • Loading branch information
maxim-lobanov committed Feb 9, 2024
1 parent 62f4592 commit 39a0a83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ class MermaidNode {
return result;
}
static createFromGitHubIssue(issue) {
return new MermaidNode(`issue${issue.id}`, issue.title, MermaidNode.getNodeStatusFromGitHubIssue(issue), issue.html_url);
return new MermaidNode(`issue${issue.id}`, issue.title, MermaidNode.getNodeStatusFromGitHubIssue(issue));
}
static getNodeStatusFromGitHubIssue(issue) {
if (issue.state !== "open") {
Expand Down
2 changes: 1 addition & 1 deletion src/mermaid-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class MermaidNode {
`issue${issue.id}`,
issue.title,
MermaidNode.getNodeStatusFromGitHubIssue(issue),
issue.html_url
//issue.html_url
);
}

Expand Down

0 comments on commit 39a0a83

Please sign in to comment.