Skip to content

Commit a739086

Browse files
authored
Add missing parentheses in toolchain profiler template (#21558)
Fix #21551
1 parent 0c47091 commit a739086

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/toolchain_profiler.results_template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
function refresh() {
7676
var hideBlocksSmallerThan = parseInt(document.getElementById('hideBlocksSmallerThan').value);
7777
var url = window.location.href;
78-
if (url.includes('?') url = url.split('?')[0]
78+
if (url.includes('?')) url = url.split('?')[0]
7979
window.location.href = url + '?hideBlocksSmallerThan=' + hideBlocksSmallerThan;
8080
}
8181

0 commit comments

Comments
 (0)