Fixed: The list of files attached to the task is not displayed (#2706)

* Fixed: The list of files attached to the task is not displayed

* Updated changelog & version
main
Boris Sekachev 5 years ago committed by GitHub
parent d48cc53e76
commit 16b7915ae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- SSLCertVerificationError when remote source is used (<https://github.com/openvinotoolkit/cvat/pull/2683>)
- Fixed filters select overflow (<https://github.com/openvinotoolkit/cvat/pull/2614>)
- Cuboids are missed in annotations statistics (<https://github.com/openvinotoolkit/cvat/pull/2704>)
- The list of files attached to the task is not displayed (<https://github.com/openvinotoolkit/cvat/pull/2706>)
### Security

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

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

@ -1,4 +1,4 @@
// Copyright (C) 2020 Intel Corporation
// Copyright (C) 2020-2021 Intel Corporation
//
// SPDX-License-Identifier: MIT
@ -87,7 +87,7 @@ export default class FileManager extends React.PureComponent<Props, State> {
const { files } = this.state;
return (
<Tabs.TabPane key='local' tab='My computer'>
<Tabs.TabPane className='cvat-file-manager-local-tab' key='local' tab='My computer'>
<Upload.Dragger
multiple
listType='text'

@ -13,3 +13,9 @@
margin-top: 10px;
}
}
.cvat-file-manager-local-tab {
> span:nth-child(1) {
display: block;
}
}

Loading…
Cancel
Save