Skip to content
Snippets Groups Projects
Commit 186ecf2b authored by Farbod Zamani's avatar Farbod Zamani Committed by Jan-Hendrik Willms
Browse files

Biest #1285

Closes #1285

Merge request studip/studip!964
parent 2b47cc8a
No related branches found
No related tags found
No related merge requests found
......@@ -218,7 +218,7 @@ export default {
return null;
},
updateContent(blockAdder) {
if(blockAdder.container.id === this.container.id) {
if(blockAdder.hasOwnProperty('container') && blockAdder.container.id === this.container.id) {
this.initCurrentData();
}
}
......
......@@ -236,7 +236,7 @@ export default {
return null;
},
updateContent(blockAdder) {
if(blockAdder.container.id === this.container.id) {
if(blockAdder.hasOwnProperty('container') && blockAdder.container.id === this.container.id) {
this.initCurrentData();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment