Skip to content

Commit f984afe

Browse files
author
Pavel Kosov
committed
NFC, fixed typo
1 parent 9846672 commit f984afe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lnt/server/ui/templates/v4_graph.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@
6363
xaxis_right = 1 - 0.03 * i;
6464
graph_layout[yaxis]['position'] = xaxis_right;
6565
} else {
66-
xaxis_left = 0.03 * i
66+
xaxis_left = 0.03 * i;
6767
graph_layout[yaxis]['position'] = xaxis_left;
6868
}
6969
}
7070
graph_layout['xaxis']['domain'] = [xaxis_left, xaxis_right];
7171
Plotly.newPlot('graph', tmp_plots, graph_layout);
72-
var graph = document.getElementById('graph')
72+
var graph = document.getElementById('graph');
7373
graph.on('plotly_click', plotly_update_tooltip);
7474
graph.on('plotly_doubleclick', plotly_hide_tooltip);
7575
}

lnt/server/ui/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1412,7 +1412,7 @@ def compute_moving_average_and_median(x, window, average_list,
14121412
if moving_median_data["x"]:
14131413
med_col = [c * 0.6 for c in col]
14141414
moving_median_data.update({
1415-
"name": trace_name("Moving median: ", test_name, field.name),
1415+
"name": trace_name("Moving median", test_name, field.name),
14161416
"legendgroup": test_name,
14171417
"yaxis": yaxis,
14181418
"hoverinfo": "skip",

0 commit comments

Comments
 (0)