Skip to content

Commit

Permalink
[PATCH] fix Textbox undefined observer
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurtil authored Oct 8, 2024
1 parent 587f44a commit e1ffb3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BIMDataComponents/BIMDataTextbox/BIMDataTextbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ export default {
this.computeText();
},
beforeUnmount() {
this.observer.disconnect();
this.observer?.disconnect();
},
beforeDestroy() {
this.observer.disconnect();
this.observer?.disconnect();
},
methods: {
async computeText() {
Expand Down

0 comments on commit e1ffb3b

Please sign in to comment.