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.
2 parents 805eec6 + a2ef7b3 commit 638c8b8Copy full SHA for 638c8b8
src/graphs/scatterplot/ScatterplotGraph.js
@@ -41,6 +41,7 @@ class ScatterplotGraph {
41
this.data = data;
42
this.states = states;
43
}
44
+
45
/**
46
* Computes the dataSet for the Scatterplot and Histogram graphs.
47
*
@@ -70,6 +71,7 @@ class ScatterplotGraph {
70
71
deliveredTimestamp: ticket.delivered,
72
leadTime: 0,
73
ticketId: ticket.work_id,
74
+ ticketType: ticket.indexes?.find((i) => i.name === 'ticket_type')?.value || '',
75
};
76
for (const state of this.states) {
77
if (ticket[state]) {
0 commit comments