mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-25 19:41:14 -08:00
fix(editor): fix interim updates on executions view (#4497)
🐛 Set hash on executions view
This commit is contained in:
parent
f24497589f
commit
cf034c015f
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue