Skip to content

Commit 2aab119

Browse files
Merge pull request #1018 from Mark-Simulacrum/fix-order-query
Do not overwrite base commit links on detailed query page
2 parents 2b557f3 + 5fc4cbe commit 2aab119

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/static/detailed-query.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,16 +159,16 @@ <h3 id="title"></h3>
159159
return `<a href="${ff_url}">Firefox profiler</a>`;
160160
};
161161
if (state.base_commit) {
162-
txt += "<br>";
163162
txt += `Download/view
164163
${dl_link(state.base_commit, state.benchmark, state.run_name)},
165164
${processed_link(state.base_commit, state.benchmark, state.run_name, "flamegraph")},
166165
${processed_link(state.base_commit, state.benchmark, state.run_name, "crox")}
167166
(${speedscope_link(state.base_commit, state.benchmark, state.run_name)},
168167
${firefox_profiler_link(state.base_commit, state.benchmark, state.run_name)})
169168
results for ${state.base_commit.substring(0, 10)} (base commit)`;
169+
txt += "<br>";
170170
}
171-
txt = `Download/view
171+
txt += `Download/view
172172
${dl_link(state.commit, state.benchmark, state.run_name)},
173173
${processed_link(state.commit, state.benchmark, state.run_name, "flamegraph")},
174174
${processed_link(state.commit, state.benchmark, state.run_name, "crox")}

0 commit comments

Comments
 (0)