Skip to content

Commit ff26496

Browse files
committed
Fix bug where Network upload graph in a combined chart would show delayed results.
1 parent f2751a3 commit ff26496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/svg_graph.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ pub fn double_line(
129129
let (indexed_string, indexed_string2) = samples
130130
.iter()
131131
.skip(start)
132-
.zip(samples2.iter())
132+
.zip(samples2.iter().skip(start))
133133
.enumerate()
134134
.fold(
135135
(

0 commit comments

Comments
 (0)