Merge pull request #6213 from aignatov-bio/ai-sci-9296-fix-restore-archive-action

Fix archive/restore results [SCI-9296]
This commit is contained in:
aignatov-bio 2023-09-13 14:37:09 +02:00 committed by GitHub
commit 110e2ced6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,7 +121,7 @@
$('.result-wrapper .collapse').collapse('hide')
},
removeResult(result_id) {
this.results = this.results.filter((r) => r.attributes.id != result_id);
this.results = this.results.filter((r) => r.id != result_id);
}
}
}