Skip to content

Commit a062cf2

Browse files
Fixed timing sessions view
1 parent 9aaf583 commit a062cf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

report-ng/app/src/components/timings/session-timings/session-timings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ export class SessionTimings extends AbstractViewModel {
224224
formatter: function (params) {
225225
if (params.data) {
226226
const seriesIndex = (params.seriesIndex - 2); // two series as offset for the legend placeholder
227-
const testNames = this._dots[seriesIndex].information.methodList.map(method => method.methodContext.contextValues.name);
227+
const testNames = this._dots[seriesIndex].information.methodList.map(method => method.identifier);
228228
let tooltipString = '<div class="header" style="background-color: ' +
229229
params.color + ';"> ' + this._dots[seriesIndex].information.browserName + ', Version: ' +
230230
this._dots[seriesIndex].information.browserVersion + '</div> <br>';

0 commit comments

Comments
 (0)