mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Fix credential errors in executions view for workflow sharee (#6875)
This commit is contained in:
@@ -776,6 +776,24 @@ export default defineComponent({
|
||||
this.workflowsStore.setWorkflowPinData(data.workflowData.pinData);
|
||||
}
|
||||
|
||||
if (data.workflowData.ownedBy) {
|
||||
this.workflowsEEStore.setWorkflowOwnedBy({
|
||||
workflowId: data.workflowData.id,
|
||||
ownedBy: data.workflowData.ownedBy,
|
||||
});
|
||||
}
|
||||
|
||||
if (data.workflowData.sharedWith) {
|
||||
this.workflowsEEStore.setWorkflowSharedWith({
|
||||
workflowId: data.workflowData.id,
|
||||
sharedWith: data.workflowData.sharedWith,
|
||||
});
|
||||
}
|
||||
|
||||
if (data.workflowData.usedCredentials) {
|
||||
this.workflowsStore.setUsedCredentials(data.workflowData.usedCredentials);
|
||||
}
|
||||
|
||||
await this.addNodes(
|
||||
deepCopy(data.workflowData.nodes),
|
||||
deepCopy(data.workflowData.connections),
|
||||
|
||||
Reference in New Issue
Block a user