diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f23da5e..e620d960 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Increase preview size of a task till 256, 256 on the server - Minor style updates - Public ssh-keys are displayed in a dedicated window instead of console when create a task with a repository +- React UI has become is a primary UI ### Deprecated - diff --git a/cvat-core/src/annotations-collection.js b/cvat-core/src/annotations-collection.js index e06e60f4..e09e6f47 100644 --- a/cvat-core/src/annotations-collection.js +++ b/cvat-core/src/annotations-collection.js @@ -150,6 +150,7 @@ } for (const shape of data.shapes) { + if (shape.type === 'cuboid') continue; const clientID = ++this.count; const shapeModel = shapeFactory(shape, clientID, this.injection); this.shapes[shapeModel.frame] = this.shapes[shapeModel.frame] || []; diff --git a/cvat-ui/src/components/task-page/job-list.tsx b/cvat-ui/src/components/task-page/job-list.tsx index 9add6f4a..4d350e04 100644 --- a/cvat-ui/src/components/task-page/job-list.tsx +++ b/cvat-ui/src/components/task-page/job-list.tsx @@ -51,20 +51,20 @@ function JobListComponent(props: Props & RouteComponentProps): JSX.Element { key: 'job', render: (id: number): JSX.Element => (