Merge pull request #6992 from lasniscinote/gl_SCI_10074

(fix) Content disappears until page refresh when moving it between results [SCI-10074]
This commit is contained in:
Gregor Lasnibat 2024-01-23 14:58:21 +01:00 committed by GitHub
commit 73beb3abf5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -192,7 +192,7 @@ export default {
},
watch: {
resultToReload() {
if (this.resultToReload === this.result.id) {
if (Number(this.resultToReload) === Number(this.result.id)) {
this.loadElements();
this.loadAttachments();
}