diff --git a/CHANGELOG.md b/CHANGELOG.md index c8c17cf0..c37b869b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Kibana startup initialization () - The cursor jumps to the end of the line when renaming a task () - SSLCertVerificationError when remote source is used () +- Fixed filters select overflow () ### Security diff --git a/cvat-ui/package-lock.json b/cvat-ui/package-lock.json index 956826d7..b5734f54 100644 --- a/cvat-ui/package-lock.json +++ b/cvat-ui/package-lock.json @@ -1,6 +1,6 @@ { "name": "cvat-ui", - "version": "1.13.4", + "version": "1.13.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/cvat-ui/package.json b/cvat-ui/package.json index fe8617c0..5dcd4f04 100644 --- a/cvat-ui/package.json +++ b/cvat-ui/package.json @@ -1,6 +1,6 @@ { "name": "cvat-ui", - "version": "1.13.4", + "version": "1.13.5", "description": "CVAT single-page application", "main": "src/index.tsx", "scripts": { diff --git a/cvat-ui/src/components/annotation-page/annotations-filters-input.tsx b/cvat-ui/src/components/annotation-page/annotations-filters-input.tsx index 2bd2664c..92276391 100644 --- a/cvat-ui/src/components/annotation-page/annotations-filters-input.tsx +++ b/cvat-ui/src/components/annotation-page/annotations-filters-input.tsx @@ -1,4 +1,4 @@ -// Copyright (C) 2020 Intel Corporation +// Copyright (C) 2020-2021 Intel Corporation // // SPDX-License-Identifier: MIT @@ -120,7 +120,8 @@ function AnnotationsFiltersInput(props: StateToProps & DispatchToProps): JSX.Ele changeAnnotationsFilters, } = props; - const [underCursor, setUnderCursor] = useState(false); + const [underCursor, setUnderCursor] = useState(false); + const [dropdownVisible, setDropdownVisible] = useState(true); return (