(fix) Content disappears until page refresh when moving it between results [SCI-10074]

This commit is contained in:
Gregor Lasnibat 2024-01-23 14:10:08 +01:00
parent d71061a75d
commit e46cfdc0d4

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();
}