Skip to content

Commit

Permalink
Fix show empty tasks (#100)
Browse files Browse the repository at this point in the history
* Fix show empty tasks

* v1.41.1

* Update changelog

Co-authored-by: Boris Sekachev <sekachev.bs@gmail.com>
  • Loading branch information
Marishka17 and bsekachev authored Aug 19, 2022
1 parent 182c39a commit af1e15b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Image search in cloud storage (<https://github.com/cvat-ai/cvat/pull/8>)
- Reset password functionality (<https://github.com/cvat-ai/cvat/pull/52>)
- Creating task with cloud storage data (<https://github.com/cvat-ai/cvat/pull/116>)
- Show empty tasks (<https://github.com/cvat-ai/cvat/pull/100>)

### Security
- TDB
Expand Down
2 changes: 1 addition & 1 deletion cvat-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cvat-ui",
"version": "1.41.0",
"version": "1.41.1",
"description": "CVAT single-page application",
"main": "src/index.tsx",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion cvat-ui/src/components/tasks-page/tasks-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function TasksPageComponent(props: Props): JSX.Element {
<Button
type='link'
onClick={(): void => {
dispatch(hideEmptyTasks(true));
dispatch(hideEmptyTasks(false));
message.destroy();
}}
>
Expand Down

0 comments on commit af1e15b

Please sign in to comment.