RED-3752 -> Inconsistent page order in highlights view

This commit is contained in:
Valentin Mihai 2022-04-04 14:58:15 +03:00
parent e634e61b40
commit 4dc5eeaf7a

View File

@ -365,6 +365,7 @@ export class FileWorkloadComponent {
} else {
this.displayedPages = this.#allPages;
}
this.displayedPages = this.displayedPages.sort((a, b) => a - b);
return this.displayedAnnotations;
}