We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f8080e commit 23fd7beCopy full SHA for 23fd7be
src/main/resources/lib/hudson/test/js/failureSummary.js
@@ -33,10 +33,8 @@ function initializeShowHideLinks() {
33
nextRow.dataset.type = "foldout-row";
34
table.insertBefore(nextRow, tableRow.nextSibling);
35
36
- // Clear the query parameters
37
- const cleanUrl = new URL(document.URL);
38
- cleanUrl.search = "";
39
- showSummary(td, cleanUrl + id.replace(PREFIX, '') + "summary");
+ const summaryUrl = new URL(`${id.replace(PREFIX, '')}summary`, document.URL);
+ showSummary(td, summaryUrl);
40
} else {
41
nextRow.remove();
42
}
0 commit comments