diff --git a/CHANGELOG.md b/CHANGELOG.md index 82897f74..d91159ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Canvas is busy error () - Projects view layout fix () - Fixed the tasks view (infinite loading) when it is impossible to get a preview of the task () +- Empty frames navigation () ### Security diff --git a/cvat-ui/src/containers/annotation-page/top-bar/top-bar.tsx b/cvat-ui/src/containers/annotation-page/top-bar/top-bar.tsx index 5a7a40fc..1d12a1db 100644 --- a/cvat-ui/src/containers/annotation-page/top-bar/top-bar.tsx +++ b/cvat-ui/src/containers/annotation-page/top-bar/top-bar.tsx @@ -446,9 +446,9 @@ class AnnotationTopBarContainer extends React.PureComponent { } private searchEmptyFrame(start: number, stop: number): void { - const { canvasInstance, jobInstance, searchAnnotations } = this.props; + const { canvasInstance, jobInstance, searchEmptyFrame } = this.props; if (canvasInstance.isAbleToChangeFrame()) { - searchAnnotations(jobInstance, start, stop); + searchEmptyFrame(jobInstance, start, stop); } }