From 2855492de4e93f9216c8064904048cc44ff3b9f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Thu, 2 Dec 2021 09:43:59 +0100 Subject: [PATCH] :fire: Remove old solution leftover --- packages/editor-ui/src/components/ExecutionsList.vue | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/editor-ui/src/components/ExecutionsList.vue b/packages/editor-ui/src/components/ExecutionsList.vue index f7982d88f9..496b8735a6 100644 --- a/packages/editor-ui/src/components/ExecutionsList.vue +++ b/packages/editor-ui/src/components/ExecutionsList.vue @@ -530,11 +530,7 @@ export default mixins( return; } const data = await this.restApi().getPastExecutions(this.workflowFilterPast, this.requestItemsPerRequest); - - this.finishedExecutions = data.results.map((execution) => { - // @ts-ignore - return { ...execution, mode: execution.mode }; - }); + this.finishedExecutions = data.results; this.finishedExecutionsCount = data.count; this.finishedExecutionsCountEstimated = data.estimated; },