From cf034c015fee7bc6eead0e4901bafef3a08fe88b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Tue, 1 Nov 2022 17:40:45 +0100 Subject: [PATCH] fix(editor): fix interim updates on executions view (#4497) :bug: Set hash on executions view --- .../editor-ui/src/components/ExecutionsView/ExecutionsView.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/editor-ui/src/components/ExecutionsView/ExecutionsView.vue b/packages/editor-ui/src/components/ExecutionsView/ExecutionsView.vue index e484271b41..d211bd1fd7 100644 --- a/packages/editor-ui/src/components/ExecutionsView/ExecutionsView.vue +++ b/packages/editor-ui/src/components/ExecutionsView/ExecutionsView.vue @@ -362,6 +362,7 @@ export default mixins(restApi, showMessage, executionHelpers, debounceHelper, wo this.$store.commit('tags/upsertTags', tags); const tagIds = tags.map((tag) => tag.id); this.$store.commit('setWorkflowTagIds', tagIds || []); + this.$store.commit('setWorkflowHash', data.hash); this.$externalHooks().run('workflow.open', { workflowId, workflowName: data.name }); this.$store.commit('setStateDirty', false);