Skip to content
Snippets Groups Projects
Commit cdb090bd authored by Ron Lucke's avatar Ron Lucke
Browse files

fix #641

parent c95689d9
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,7 @@ export default { ...@@ -51,7 +51,7 @@ export default {
this.adderActive = false; this.adderActive = false;
this.$emit('updateContainerContent', oldValue); this.$emit('updateContainerContent', oldValue);
} else { } else {
if (newValue.container.id === this.container.id && newValue.section === this.section) { if (newValue.container && newValue.container.id === this.container.id && newValue.section === this.section) {
this.adderActive = true; this.adderActive = true;
} else { } else {
this.adderActive = false; this.adderActive = false;
......
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