From ff85fe00060ef8e8bf8d15bcf1ad6b03bfd6d46f Mon Sep 17 00:00:00 2001 From: Dmitry Kalinin Date: Wed, 20 Jan 2021 16:55:41 +0300 Subject: [PATCH] Fixed styles for filters select (#2614) * Fixed styles for filters select * Added CHANGELOG * Aborted style changes * Aborted style changes * Aborted version * Fixed couple of bugs * Updated version Co-authored-by: Boris Sekachev --- CHANGELOG.md | 1 + cvat-ui/package-lock.json | 2 +- cvat-ui/package.json | 2 +- .../annotations-filters-input.tsx | 22 ++++++++++++++----- .../components/annotation-page/styles.scss | 13 +++++------ 5 files changed, 26 insertions(+), 14 deletions(-) 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 (