Skip to content
Snippets Groups Projects

fix #641

Merged Ron Lucke requested to merge biest-641 into main
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -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;
Loading