Merge pull request #6667 from lasniscinote/gl_SCI_9686

(Fix) Only one item can be opened on item card [SCI-9686]
This commit is contained in:
Martin Artnik 2023-11-21 10:23:35 +01:00 committed by GitHub
commit 3f6e8b0a78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -93,6 +93,11 @@
}
},
watch: {
value(newVal, oldVal) {
if (newVal !== oldVal) {
this.newValue = newVal
}
},
editing() {
this.refreshTexareaHeight()
},