Fixed project removing (#2626)

* Fixed project removing

* Updated changelog
main
Boris Sekachev 5 years ago committed by GitHub
parent 2c74394f51
commit 33b9f8bc55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Memory consumption for the task creation process (<https://github.com/openvinotoolkit/cvat/pull/2582>)
- Frame preloading (<https://github.com/openvinotoolkit/cvat/pull/2608>)
- Project cannot be removed from the project page (<https://github.com/openvinotoolkit/cvat/pull/2626>)
### Security

@ -1,6 +1,6 @@
{
"name": "cvat-ui",
"version": "1.13.2",
"version": "1.13.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

@ -1,6 +1,6 @@
{
"name": "cvat-ui",
"version": "1.13.2",
"version": "1.13.3",
"description": "CVAT single-page application",
"main": "src/index.tsx",
"scripts": {

@ -32,7 +32,7 @@ export default function ProjectTopBar(props: DetailsComponentProps): JSX.Element
</Button>
</Col>
<Col className='cvat-project-top-bar-actions'>
<Dropdown overlay={<ActionsMenu projectInstance={projectInstance.instance} />}>
<Dropdown overlay={<ActionsMenu projectInstance={projectInstance} />}>
<Button size='large'>
<Text className='cvat-text-color'>Actions</Text>
<Icon className='cvat-menu-icon' component={MenuIcon} />

Loading…
Cancel
Save