Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion resources/developer-mode.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ function createUIForSuites() {
checkbox.checked = !suite.disabled;
checkbox.onchange = () => {
suite.disabled = !checkbox.checked;
updateParamsSuitesAndTags();
updateURL();
};
checkboxes.push(checkbox);
Expand Down Expand Up @@ -261,6 +260,8 @@ function updateParamsSuitesAndTags() {
}

function updateURL() {
updateParamsSuitesAndTags();

const url = new URL(window.location.href);

url.searchParams.delete("tags");
Expand Down