Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 10901b1

Browse files
committed
Do not share name filter between compile and runtime tabs
1 parent d7642fe commit 10901b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/frontend/src/pages/compare/runtime/runtime-page.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function loadFilterFromUrl(
2727
defaultFilter: RuntimeBenchmarkFilter
2828
): RuntimeBenchmarkFilter {
2929
return {
30-
name: urlParams["name"] ?? defaultFilter.name,
30+
name: urlParams["runtimeName"] ?? defaultFilter.name,
3131
nonRelevant: getBoolOrDefault(
3232
urlParams,
3333
"nonRelevant",
@@ -64,7 +64,7 @@ function storeFilterToUrl(
6464
}
6565
}
6666
67-
storeOrReset("name", filter.name || null, defaultFilter.name);
67+
storeOrReset("runtimeName", filter.name || null, defaultFilter.name);
6868
storeOrReset("nonRelevant", filter.nonRelevant, defaultFilter.nonRelevant);
6969
storeOrReset("showRawData", filter.showRawData, defaultFilter.showRawData);
7070
changeUrl(urlParams);

0 commit comments

Comments
 (0)