Skip to content
Snippets Groups Projects
Verified Commit bfd2ee2b authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #12091 TIME 1:20 listinstance value was not updated if we removed item

parent 7d99854c
No related branches found
No related tags found
No related merge requests found
...@@ -304,6 +304,9 @@ export class DiffusionsListComponent implements OnInit { ...@@ -304,6 +304,9 @@ export class DiffusionsListComponent implements OnInit {
deleteItem(roleId: string, index: number) { deleteItem(roleId: string, index: number) {
this.diffList[roleId].items.splice(index, 1); this.diffList[roleId].items.splice(index, 1);
if (this.diffFormControl !== undefined) {
this.setFormValues();
}
} }
getCurrentListinstance() { getCurrentListinstance() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment