Skip to content
Snippets Groups Projects
Commit 334a223e authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

Resolve "Fragebögen: Frageoptionen werden überschrieben wenn Fragen kopiert werden"

Closes #4208

Merge request studip/studip!3052
parent d536c58f
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,7 @@ const Questionnaire = {
id: id,
questiontype: this.questions[i].questiontype,
internal_name: this.questions[i].internal_name,
questiondata: Object.assign({}, this.questions[i].questiondata)
questiondata: JSON.parse(JSON.stringify(this.questions[i].questiondata)),
});
this.activeTab = id;
},
......
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