Skip to content

Commit

Permalink
fix: display the last issue
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed Nov 29, 2023
1 parent 1d8718b commit c3fb7da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion static/scripts/display-issues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export function displayIssues(container: HTMLDivElement, issues: GitHubIssue[])
issueElement.addEventListener("click", () => {
console.log(issue);
// console.log(match);
window.open(match?.input, "_blank");
window.open(match?.input, "_blank");
});

issueWrapper.appendChild(issueElement);
Expand Down
1 change: 1 addition & 0 deletions static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ body {
margin: auto;
border-left: 1px solid #80808010;
cursor: pointer;
padding: 48px 0;
}

#issues-container:hover .issue-element-inner {
Expand Down

0 comments on commit c3fb7da

Please sign in to comment.