| Index: dashboard/dashboard/elements/chart-container.html
|
| diff --git a/dashboard/dashboard/elements/chart-container.html b/dashboard/dashboard/elements/chart-container.html
|
| index d7c8773f0956d179b099c39d6ca442d81980cd13..5bfd612516de6f07d1be2aa985f6368ca4d55039 100644
|
| --- a/dashboard/dashboard/elements/chart-container.html
|
| +++ b/dashboard/dashboard/elements/chart-container.html
|
| @@ -565,7 +565,14 @@ triaging functionality in the chart.
|
| revisionInfo: { notify: true },
|
| showCompact: { notify: true },
|
| testSuites: { notify: true },
|
| - xsrfToken: { notify: true }
|
| + xsrfToken: { notify: true },
|
| +
|
| + deletedBugId: {
|
| + type: Number,
|
| + },
|
| + deletedBugKey: {
|
| + type: Number,
|
| + }
|
| },
|
| observers: [
|
| 'indicesToGraphChanged(indicesToGraph.splices)'
|
| @@ -1873,6 +1880,8 @@ triaging functionality in the chart.
|
| * chart-tooltip.
|
| */
|
| onBugTriaged: function(event) {
|
| + console.log('onBugTriaged');
|
| + console.log(event);
|
| var jsonSeriesIndex = event.detail.alerts[0].seriesIndex;
|
| var dataIndex = event.detail.alerts[0].dataIndex;
|
| var bugId = event.detail.bugid;
|
|
|