Fix: selection glitch in annotation index
This commit is contained in:
parent
06a881525f
commit
d39548ff95
1 changed files with 1 additions and 2 deletions
|
@ -205,9 +205,8 @@ class AnnotationManager {
|
||||||
if (this.selectedAnnotations.indexOf(annotation) !== -1){
|
if (this.selectedAnnotations.indexOf(annotation) !== -1){
|
||||||
this.selectedAnnotations.splice(this.selectedAnnotations.indexOf(annotation), 1)
|
this.selectedAnnotations.splice(this.selectedAnnotations.indexOf(annotation), 1)
|
||||||
}
|
}
|
||||||
this.annotationsEl.querySelector('#select-'+annotation.id_hash).checked = true;
|
this.annotationsEl.querySelector('#select-'+annotation.id_hash).checked = false;
|
||||||
this.buildAnnotationActions()
|
this.buildAnnotationActions()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
buildAnnotationActions() {
|
buildAnnotationActions() {
|
||||||
|
|
Loading…
Reference in a new issue