diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index e685ced3d..ac79752b5 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -2214,7 +2214,7 @@ src/app/components/manage/workflows/workflows.component.ts - 131 + 137 @@ -2553,7 +2553,7 @@ src/app/components/manage/workflows/workflows.component.ts - 133 + 139 @@ -8611,49 +8611,49 @@ Confirm delete workflow src/app/components/manage/workflows/workflows.component.ts - 129 + 135 This operation will permanently delete this workflow. src/app/components/manage/workflows/workflows.component.ts - 130 + 136 Deleted workflow src/app/components/manage/workflows/workflows.component.ts - 139 + 145 Error deleting workflow. src/app/components/manage/workflows/workflows.component.ts - 144 + 150 Enabled workflow src/app/components/manage/workflows/workflows.component.ts - 155 + 161 Disabled workflow src/app/components/manage/workflows/workflows.component.ts - 156 + 162 Error toggling workflow. src/app/components/manage/workflows/workflows.component.ts - 162 + 168 diff --git a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html index 7cbb6b6f2..5184dcd10 100644 --- a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html +++ b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -180,7 +180,7 @@ @switch(formGroup.get('type').value) { - @case ( WorkflowActionType.Assignment) { + @case (WorkflowActionType.Assignment) {
diff --git a/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts b/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts index 9f97ab743..636e03d54 100644 --- a/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts +++ b/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts @@ -186,6 +186,57 @@ describe('WorkflowsComponent', () => { expect(editDialog.dialogMode).toEqual(EditDialogMode.CREATE) }) + it('should null ids on copy', () => { + const workflow = { + id: 1, + name: 'Workflow 1', + order: 1, + enabled: true, + triggers: [ + { + id: 1, + type: WorkflowTriggerType.Consumption, + sources: [DocumentSource.ConsumeFolder], + filter_filename: '*', + }, + ], + actions: [ + { + id: 1, + type: WorkflowActionType.Email, + email: { + id: 1, + subject: 'foo', + body: 'bar', + to: 'baz', + include_document: true, + }, + }, + { + id: 2, + type: WorkflowActionType.Webhook, + webhook: { + id: 2, + url: 'foo', + use_params: false, + params: {}, + body: 'bar', + headers: {}, + include_document: true, + }, + }, + ], + } + let modal: NgbModalRef + modalService.activeInstances.subscribe((m) => (modal = m[m.length - 1])) + component.copyWorkflow(workflow) + expect(modal).not.toBeUndefined() + const editDialog = modal.componentInstance as WorkflowEditDialogComponent + expect(editDialog.object.id).toBeNull() + expect(editDialog.object.triggers[0].id).toBeNull() + expect(editDialog.object.actions[0].id).toBeNull() + }) + it('should support delete, show notification on error / success', () => { let modal: NgbModalRef modalService.activeInstances.subscribe((m) => (modal = m[m.length - 1])) diff --git a/src-ui/src/app/components/manage/workflows/workflows.component.ts b/src-ui/src/app/components/manage/workflows/workflows.component.ts index 9c1bc1ad4..b1f9ff6d0 100644 --- a/src-ui/src/app/components/manage/workflows/workflows.component.ts +++ b/src-ui/src/app/components/manage/workflows/workflows.component.ts @@ -110,6 +110,12 @@ export class WorkflowsComponent clone.actions = [ ...workflow.actions.map((a) => { a.id = null + if (a.webhook) { + a.webhook.id = null + } + if (a.email) { + a.email.id = null + } return a }), ]