From 1311806b96ee0a1b7943f2f1d1d5408bcf251758 Mon Sep 17 00:00:00 2001 From: Sonja Happ Date: Mon, 25 Jan 2021 15:40:01 +0100 Subject: [PATCH] remove debug output --- src/ic/ic-graph-store.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ic/ic-graph-store.js b/src/ic/ic-graph-store.js index 7a4a05c..1f3d27a 100644 --- a/src/ic/ic-graph-store.js +++ b/src/ic/ic-graph-store.js @@ -37,12 +37,10 @@ class ICGraphStore extends ArrayStore { state.forEach((element, index, array) => { newElements = newElements.filter((updateElement, newIndex) => { if (element.icID === updateElement.icID) { - console.log("Updating graph:", icGraph.icID) // update each property for (var key in updateElement) { if (updateElement.hasOwnProperty(key) && key === "objectURL") { URL.revokeObjectURL(array[index][key]); - console.log("revoked objectURL", array[index][key]) } else if (updateElement.hasOwnProperty(key)){ array[index][key] = updateElement[key]; }