diff --git a/src/components/workflows/timeline/BaseTimelineDetailedChart.vue b/src/components/workflows/timeline/BaseTimelineDetailedChart.vue index 4589c07..6240a52 100644 --- a/src/components/workflows/timeline/BaseTimelineDetailedChart.vue +++ b/src/components/workflows/timeline/BaseTimelineDetailedChart.vue @@ -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)) diff --git a/src/types/index.d.ts b/src/types/index.d.ts index 02c7f3b..2259c74 100644 --- a/src/types/index.d.ts +++ b/src/types/index.d.ts @@ -86,6 +86,7 @@ export interface FilterOption { export interface ReleaseInfo { id: number, published_at: string, - tag_name: string + tag_name: string, + html_url: string }