From f6f4548a1fbe8673cf47913da69cf1b826f18926 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fran=C3=A7ois=20Grand?= <francois.grand@inrae.fr>
Date: Thu, 2 Mar 2023 11:32:38 +0100
Subject: [PATCH] fix: PAB table: copy button not working

refs #607
---
 src/app/components/pab-table/pab-table.component.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/app/components/pab-table/pab-table.component.ts b/src/app/components/pab-table/pab-table.component.ts
index c07ae0282..f06c1b536 100644
--- a/src/app/components/pab-table/pab-table.component.ts
+++ b/src/app/components/pab-table/pab-table.component.ts
@@ -969,7 +969,7 @@ export class PabTableComponent implements AfterViewInit, AfterViewChecked, OnIni
         for (let i = 0; i < this.childrenToAdd; i++) {
             for (const si of this.selectedItems) {
                 const newChild = Session.getInstance().createNub(
-                    si.properties.clone(),
+                    si,
                     si.parent
                 );
                 // copy parameter values
@@ -982,7 +982,7 @@ export class PabTableComponent implements AfterViewInit, AfterViewChecked, OnIni
                 if (si instanceof ParallelStructure) {
                     for (const c of si.getChildren()) {
                         const newGrandChild = Session.getInstance().createNub(
-                            c.properties.clone(),
+                            c,
                             newChild
                         );
                         // copy children parameters values
-- 
GitLab