Skip to content

Commit fa9fc0f

Browse files
committed
Fix case transform
1 parent 64f1d4c commit fa9fc0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/views/codeAnalytics/Jaeger/JaegerPanel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ export class JaegerPanel {
138138
if (traceIds.length === 1) {
139139
startPath = `/trace/${traceIds[0]}`;
140140
} else if (traceIds.length === 2 && traceIdLabels != null) {
141-
const trace1 = traceIds[0].toLocaleLowerCase();
142-
const trace2 = traceIds[1].toLocaleLowerCase();
141+
const trace1 = traceIds[0].toLowerCase();
142+
const trace2 = traceIds[1].toLowerCase();
143143
startPath = `/trace/${trace1}...${trace2}?cohort=${trace1}&cohort=${trace2}`;
144144
}
145145

0 commit comments

Comments
 (0)