Skip to content

Commit 9a14d43

Browse files
committed
#319 Fix: append tooltip elements to tableBody
1 parent d0a8335 commit 9a14d43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/app/modules/time-series/services/line-chart.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ export class LineChartService {
10741074
});
10751075
tempArray
10761076
.sort((a, b) => b.value - a.value)
1077-
.forEach(elem => table.append(elem.htmlNode));
1077+
.forEach(elem => tableBody.append(elem.htmlNode));
10781078

10791079
return table;
10801080
};

0 commit comments

Comments
 (0)