mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
ci: Enforce code formatting on editor-ui (no-changelog) (#5022)
* ci: Enforce code formatting on editor-ui (no-changelog) * pnpm format on all frontend code
This commit is contained in:
committed by
GitHub
parent
ff810794ef
commit
a12606828e
@@ -945,8 +945,8 @@ export const useWorkflowsStore = defineStore(STORES.WORKFLOWS, {
|
||||
this.currentWorkflowExecutions.splice(this.currentWorkflowExecutions.indexOf(execution), 1);
|
||||
},
|
||||
addToCurrentExecutions(executions: IExecutionsSummary[]): void {
|
||||
executions.forEach(execution => {
|
||||
const exists = this.currentWorkflowExecutions.find(ex => ex.id === execution.id);
|
||||
executions.forEach((execution) => {
|
||||
const exists = this.currentWorkflowExecutions.find((ex) => ex.id === execution.id);
|
||||
if (!exists && execution.workflowId === this.workflowId) {
|
||||
this.currentWorkflowExecutions.push(execution);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user