From 6fd020c488221b46809ea849053867a427902efd Mon Sep 17 00:00:00 2001 From: Csaba Tuncsik Date: Mon, 20 Feb 2023 19:46:20 +0100 Subject: [PATCH 1/9] fix(editor): remove 'crashed' status from filter --- packages/editor-ui/src/components/ExecutionsList.vue | 7 ------- .../src/components/ExecutionsView/ExecutionsList.vue | 2 +- .../src/components/ExecutionsView/ExecutionsSidebar.vue | 4 +--- 3 files changed, 2 insertions(+), 11 deletions(-) diff --git a/packages/editor-ui/src/components/ExecutionsList.vue b/packages/editor-ui/src/components/ExecutionsList.vue index ba27506d2e1f5..0dbc0f6257098 100644 --- a/packages/editor-ui/src/components/ExecutionsList.vue +++ b/packages/editor-ui/src/components/ExecutionsList.vue @@ -335,10 +335,6 @@ export default mixins(externalHooks, genericHelpers, executionHelpers, restApi, id: 'error', name: this.$locale.baseText('executionsList.error'), }, - { - id: 'crashed', - name: this.$locale.baseText('executionsList.error'), - }, { id: 'new', name: this.$locale.baseText('executionsList.new'), @@ -404,9 +400,6 @@ export default mixins(externalHooks, genericHelpers, executionHelpers, restApi, case 'waiting': queryFilter.status = ['waiting']; break; - case 'crashed': - queryFilter.status = ['crashed']; - break; case 'new': queryFilter.status = ['new']; break; diff --git a/packages/editor-ui/src/components/ExecutionsView/ExecutionsList.vue b/packages/editor-ui/src/components/ExecutionsView/ExecutionsList.vue index c0246589d827e..31be28b40737c 100644 --- a/packages/editor-ui/src/components/ExecutionsView/ExecutionsList.vue +++ b/packages/editor-ui/src/components/ExecutionsView/ExecutionsList.vue @@ -71,7 +71,7 @@ export default mixins( debounceHelper, workflowHelpers, ).extend({ - name: 'executions-view', + name: 'executions-list', components: { ExecutionsSidebar, }, diff --git a/packages/editor-ui/src/components/ExecutionsView/ExecutionsSidebar.vue b/packages/editor-ui/src/components/ExecutionsView/ExecutionsSidebar.vue index 282800047e3fb..e68503e40de6d 100644 --- a/packages/editor-ui/src/components/ExecutionsView/ExecutionsSidebar.vue +++ b/packages/editor-ui/src/components/ExecutionsView/ExecutionsSidebar.vue @@ -115,8 +115,7 @@