aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/stores/flowstore.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/js/stores/flowstore.js')
-rw-r--r--web/src/js/stores/flowstore.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/web/src/js/stores/flowstore.js b/web/src/js/stores/flowstore.js
index c7623367..7c0bddbd 100644
--- a/web/src/js/stores/flowstore.js
+++ b/web/src/js/stores/flowstore.js
@@ -41,6 +41,9 @@ _.extend(FlowView.prototype, EventEmitter.prototype, {
if(idx < 0){
this.flows.push(flow);
+ //if(this.flows.length > 100){
+ // this.flows.shift();
+ //}
} else {
this.flows[idx] = flow;
}