fix(editor): fix interim updates on executions view (#4497)

🐛 Set hash on executions view
This commit is contained in:
Iván Ovejero
2022-11-01 17:40:45 +01:00
committed by GitHub
parent f24497589f
commit cf034c015f

View File

@@ -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);