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 64f1d4c commit fa9fc0fCopy full SHA for fa9fc0f
src/views/codeAnalytics/Jaeger/JaegerPanel.ts
@@ -138,8 +138,8 @@ export class JaegerPanel {
138
if (traceIds.length === 1) {
139
startPath = `/trace/${traceIds[0]}`;
140
} else if (traceIds.length === 2 && traceIdLabels != null) {
141
- const trace1 = traceIds[0].toLocaleLowerCase();
142
- const trace2 = traceIds[1].toLocaleLowerCase();
+ const trace1 = traceIds[0].toLowerCase();
+ const trace2 = traceIds[1].toLowerCase();
143
startPath = `/trace/${trace1}...${trace2}?cohort=${trace1}&cohort=${trace2}`;
144
}
145
0 commit comments