diff --git a/extensions/arc/deployment/src/main/resources/dev-ui/qwc-arc-fired-events.js b/extensions/arc/deployment/src/main/resources/dev-ui/qwc-arc-fired-events.js index 8185976e9a23b..5b6e8bb5c8309 100644 --- a/extensions/arc/deployment/src/main/resources/dev-ui/qwc-arc-fired-events.js +++ b/extensions/arc/deployment/src/main/resources/dev-ui/qwc-arc-fired-events.js @@ -103,21 +103,19 @@ export class QwcArcFiredEvents extends LitElement { } _refresh(){ - console.log("refresh"); this.jsonRpc.getLastEvents().then(events => { this._firedEvents = events.result; }); } _clear(){ - console.log("clear"); this.jsonRpc.clearLastEvents().then(events => { this._firedEvents = events.result; }); } _toggleContext(){ - console.log("context"); + // TODO: } _addToEvents(event){ diff --git a/extensions/arc/deployment/src/main/resources/dev-ui/qwc-arc-invocation-trees.js b/extensions/arc/deployment/src/main/resources/dev-ui/qwc-arc-invocation-trees.js index 0e3e18d482aca..6d5e0e2a97a53 100644 --- a/extensions/arc/deployment/src/main/resources/dev-ui/qwc-arc-invocation-trees.js +++ b/extensions/arc/deployment/src/main/resources/dev-ui/qwc-arc-invocation-trees.js @@ -64,21 +64,19 @@ export class QwcArcInvocationTrees extends LitElement { } _refresh(){ - console.log("refresh"); this.jsonRpc.getLastInvocations().then(invocations => { this._invocations = invocations.result; }); } _clear(){ - console.log("clear"); this.jsonRpc.clearLastInvocations().then(invocations => { this._invocations = invocations.result; }); } _toggleFilter(){ - console.log("filter"); + // TODO: } } customElements.define('qwc-arc-invocation-trees', QwcArcInvocationTrees); \ No newline at end of file