diff --git a/platform/features/table/src/TelemetryCollection.js b/platform/features/table/src/TelemetryCollection.js index e7463f1176..caa1d5e316 100644 --- a/platform/features/table/src/TelemetryCollection.js +++ b/platform/features/table/src/TelemetryCollection.js @@ -190,6 +190,7 @@ define( TelemetryCollection.prototype.add = function (items) { var added = items.filter(this.addOne); this.emit('added', added); + this.dupeCheck = true; }; /** diff --git a/platform/features/table/src/controllers/TelemetryTableController.js b/platform/features/table/src/controllers/TelemetryTableController.js index a24f0d7919..4018d61dd9 100644 --- a/platform/features/table/src/controllers/TelemetryTableController.js +++ b/platform/features/table/src/controllers/TelemetryTableController.js @@ -292,7 +292,6 @@ define( */ function finishProcessing() { telemetryCollection.add(rowData); - telemetryCollection.dupeCheck = true; scope.rows = telemetryCollection.telemetry; scope.loading = false; @@ -378,7 +377,6 @@ define( function newData(domainObject, datum) { limitEvaluator = telemetryApi.limitEvaluator(domainObject); added = telemetryCollection.add([table.getRowValues(limitEvaluator, datum)]); - this.telemetry.dupeCheck = true; } objects.forEach(function (object) {