Compare commits

...

2 Commits

Author SHA1 Message Date
41c9731f4c Remove SWG value limit 2022-02-16 16:54:28 -08:00
ed74673df6 Added a memory leak to tables 2022-02-16 15:59:33 -08:00
2 changed files with 3 additions and 3 deletions

View File

@ -121,7 +121,7 @@
var data = []; var data = [];
for (; nextStep < end && data.length < 5000; nextStep += step) { for (; nextStep < end; nextStep += step) {
data.push({ data.push({
utc: nextStep, utc: nextStep,
yesterday: nextStep - 60 * 60 * 24 * 1000, yesterday: nextStep - 60 * 60 * 24 * 1000,

View File

@ -511,7 +511,7 @@ export default {
this.table.initialize(); this.table.initialize();
}, },
destroyed() { destroyed() {
this.table.off('object-added', this.addObject); /* this.table.off('object-added', this.addObject);
this.table.off('object-removed', this.removeObject); this.table.off('object-removed', this.removeObject);
this.table.off('historical-rows-processed', this.checkForMarkedRows); this.table.off('historical-rows-processed', this.checkForMarkedRows);
this.table.off('refresh', this.clearRowsAndRerender); this.table.off('refresh', this.clearRowsAndRerender);
@ -528,7 +528,7 @@ export default {
this.table.configuration.destroy(); this.table.configuration.destroy();
this.table.destroy(); this.table.destroy();*/
}, },
methods: { methods: {
updateVisibleRows() { updateVisibleRows() {