Skip to content

Commit

Permalink
feat: add link to ocrd release tag in timeline charts (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrer authored Jun 7, 2024
1 parent 505754a commit 4456eed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ function render([data, startDate, endDate, maxY]) {
.style("fill", 'white')
group
.append("svg:a").attr("xlink:href", () => { return release.html_url})
.append("text")
.classed('tag-name', true)
.attr("y", y(maxY))
Expand Down
3 changes: 2 additions & 1 deletion src/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export interface FilterOption {
export interface ReleaseInfo {
id: number,
published_at: string,
tag_name: string
tag_name: string,
html_url: string
}

0 comments on commit 4456eed

Please sign in to comment.