diff --git a/src/client/public/locale/de/common.json b/src/client/public/locale/de/common.json
index a4af2d2b6..863bb5aeb 100644
--- a/src/client/public/locale/de/common.json
+++ b/src/client/public/locale/de/common.json
@@ -376,6 +376,7 @@
"section_name": "Sektionsname",
"sections": "Sektionen",
"selectAll": "Alle auswählen",
+ "selectWorkgroupToCreateCopy": "Wählen Sie eine Arbeitsgruppe aus, um eine Kopie zu erstellen.",
"selectedCount": "{{count}} ausgewählt",
"show": "{{what}} anzeigen",
"showAll": "Alle anzeigen",
diff --git a/src/client/public/locale/en/common.json b/src/client/public/locale/en/common.json
index 84869af63..7c15ed2cf 100644
--- a/src/client/public/locale/en/common.json
+++ b/src/client/public/locale/en/common.json
@@ -377,6 +377,7 @@
"section_name": "Section name",
"sections": "Sections",
"selectAll": "Select all",
+ "selectWorkgroupToCreateCopy": "Select a workgroup to create a copy.",
"selectedCount": "{{count}} selected",
"show": "Show {{what}}",
"showAll": "Show all",
diff --git a/src/client/public/locale/fr/common.json b/src/client/public/locale/fr/common.json
index 619605fd9..c72a14fe2 100644
--- a/src/client/public/locale/fr/common.json
+++ b/src/client/public/locale/fr/common.json
@@ -376,6 +376,7 @@
"section_name": "Nom de la section",
"sections": "Sections",
"selectAll": "Tout sélectionner",
+ "selectWorkgroupToCreateCopy": "Sélectionnez le groupe de travail pour créer une copie.",
"selectedCount": "{{count}} sélectionnés",
"show": "Afficher {{what}}",
"showAll": "Afficher tout",
diff --git a/src/client/public/locale/it/common.json b/src/client/public/locale/it/common.json
index 32335de48..65c4e4cc0 100644
--- a/src/client/public/locale/it/common.json
+++ b/src/client/public/locale/it/common.json
@@ -376,6 +376,7 @@
"section_name": "Nome della sezione",
"sections": "Sezioni",
"selectAll": "Seleziona tutto",
+ "selectWorkgroupToCreateCopy": "Seleziona un gruppo di lavoro per creare una copia.",
"selectedCount": "{{count}} selezionati",
"show": "Mostra {{what}}",
"showAll": "Mostra tutti",
diff --git a/src/client/src/assets/icons/copy.svg b/src/client/src/assets/icons/copy.svg
new file mode 100644
index 000000000..f16cf0e8c
--- /dev/null
+++ b/src/client/src/assets/icons/copy.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/client/src/components/buttons/buttons.tsx b/src/client/src/components/buttons/buttons.tsx
index 21ea91752..6e88326c1 100644
--- a/src/client/src/components/buttons/buttons.tsx
+++ b/src/client/src/components/buttons/buttons.tsx
@@ -3,7 +3,7 @@ import TranslationText from "../legacyComponents/translationText";
import { Button } from "@mui/material";
import AddIcon from "@mui/icons-material/Add";
import EditIcon from "../../assets/icons/edit.svg?react";
-import CopyIcon from "@mui/icons-material/ContentCopy";
+import CopyIcon from "../../assets/icons/copy.svg?react";
import CloseIcon from "@mui/icons-material/Close";
import SaveIcon from "@mui/icons-material/Save";
import TrashIcon from "../../assets/icons/trash.svg?react";
diff --git a/src/client/src/components/prompt/prompt.tsx b/src/client/src/components/prompt/prompt.tsx
index d2ba557de..0ae1b814a 100644
--- a/src/client/src/components/prompt/prompt.tsx
+++ b/src/client/src/components/prompt/prompt.tsx
@@ -4,14 +4,14 @@ import { PromptContext } from "./promptContext.js";
import { BdmsButton } from "../buttons/buttons.tsx";
export const Prompt = () => {
- const { promptIsOpen, message, actions, closePrompt } = useContext(PromptContext);
+ const { promptIsOpen, message, actions, dialogContent, dialogWidth, closePrompt } = useContext(PromptContext);
return (