Skip to content

Commit

Permalink
Fix compare breadcrumb links
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaclarke committed Aug 21, 2021
1 parent 6d8bfe1 commit 1dd0005
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conbench/app/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ def page(self, comparisons, regressions, improvements, baseline_id, contender_id
plot = self._get_plot(baseline, contender)
plot_history = self.get_history_plot(contender)
baseline_run_id = baseline["run_id"]
contender_run_id = baseline["run_id"]
contender_run_id = contender["run_id"]
compare = f"{baseline_run_id}...{contender_run_id}"
compare_runs_url = f.url_for("app.compare-runs", compare_ids=compare)
compare = f'{baseline["batch_id"]}...{baseline["batch_id"]}'
compare = f'{baseline["batch_id"]}...{contender["batch_id"]}'
compare_batches_url = f.url_for("app.compare-batches", compare_ids=compare)

if comparisons:
Expand Down

0 comments on commit 1dd0005

Please sign in to comment.