Skip to content

Commit d0e6fd6

Browse files
authored
fix: Make document revisions in timeline clickable again (ietf-tools#4065)
Fixes ietf-tools#4064
1 parent 53dde97 commit d0e6fd6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/static/js/document_timeline.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ function draw_timeline() {
184184
.attr("transform", offset);
185185
var a = g.append("a");
186186
a.attr("xlink:href", function (d) { return d.url; });
187-
var rect = g.append("rect")
187+
var rect = a.append("rect")
188188
.attr("height", bar_height)
189189
.attr("width", bar_width)
190190
.attr("class", "btn")

0 commit comments

Comments
 (0)