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>) - Memory consumption for the task creation process (<https://github.com/openvinotoolkit/cvat/pull/2582>)
- Frame preloading (<https://github.com/openvinotoolkit/cvat/pull/2608>) - 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 ### Security

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

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

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

Loading…
Cancel
Save