From 9fcb38e2cd11f1059b8ee071e1426d301e9b4596 Mon Sep 17 00:00:00 2001 From: Roly Rudy Gutierrez Pinto Date: Thu, 31 Dec 2020 11:00:12 -0400 Subject: [PATCH] PMCORE-2578 Editing a connection by importing its exported JSON file it generates a new connection. --- .../src/components/formAuthenticationSources.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/methods/authenticationSources/src/components/formAuthenticationSources.vue b/workflow/engine/methods/authenticationSources/src/components/formAuthenticationSources.vue index 2bb880314..ed1f7d8c9 100644 --- a/workflow/engine/methods/authenticationSources/src/components/formAuthenticationSources.vue +++ b/workflow/engine/methods/authenticationSources/src/components/formAuthenticationSources.vue @@ -330,7 +330,7 @@ }, optionSaveButton(row) { this.$refs['fas-b-modal-upload-file'].hide(); - row.AUTH_SOURCE_UID = ""; + row.AUTH_SOURCE_UID = this.form.uid; let form = this.rowToForm(row); this.load(form); },