Skip to content

Commit

Permalink
Dashboard: Fix order of plots
Browse files Browse the repository at this point in the history
  • Loading branch information
oschuett committed Feb 28, 2021
1 parent 3f85c3c commit 8a766b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/dashboard/generate_dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def gen_plots(archive_reports, log, outdir, full_archive):

# write html output
html_output = ""
for pname in sorted(plots.keys()):
for pname in plots.keys():
html_output += '<a href="plot_data.txt"><img src="%s" alt="%s"></a>\n' % (
pname + fig_ext,
plots[pname]["title"],
Expand Down

0 comments on commit 8a766b7

Please sign in to comment.