From 8a47b93621f179faad7da0ed1aefdbef3bc27bb7 Mon Sep 17 00:00:00 2001
From: Alex Orluc <alex.orluc@maarch.org>
Date: Wed, 23 Oct 2019 20:19:07 +0200
Subject: [PATCH] FIX #12070 TIME 0:15 fix save diff formcontrol

---
 src/frontend/app/diffusions/diffusions-list.component.ts | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/frontend/app/diffusions/diffusions-list.component.ts b/src/frontend/app/diffusions/diffusions-list.component.ts
index d70ff7c06c6..aaae624ae4e 100644
--- a/src/frontend/app/diffusions/diffusions-list.component.ts
+++ b/src/frontend/app/diffusions/diffusions-list.component.ts
@@ -368,6 +368,10 @@ export class DiffusionsListComponent implements OnInit {
                 item_mode: "copy"
             };
             this.diffList['copy'].items.unshift(newElemListModel);
+
+            if (this.diffFormControl !== undefined) {
+                this.setFormValues();
+            }
         }
     }
 
@@ -391,6 +395,9 @@ export class DiffusionsListComponent implements OnInit {
         } else {
             this.changeUserRole(user, oldRole, newRole);
         }
+        if (this.diffFormControl !== undefined) {
+            this.setFormValues();
+        }
         //}
     }
 
@@ -457,6 +464,7 @@ export class DiffusionsListComponent implements OnInit {
         if (indexFound > -1) {
             this.diffList[oldRole.id].items.splice(indexFound, 1);
         }
+        user.item_mode = newRole.id;
         this.diffList[newRole.id].items.push(user);
     }
 
-- 
GitLab