未验证 提交 cd1f89eb 编写于 作者: B Boris Sekachev 提交者: GitHub

Fixed statistics modal when the job is assigned to someone (#4144)

* Fixed statistics modal when the job is assigned to someone

* Updated version
上级 8e4dd14d
......@@ -46,8 +46,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed task creating with large files via webpage (<https://github.com/openvinotoolkit/cvat/pull/3692>)
- Added information to export CVAT_HOST when performing local installation for accessing over network (<https://github.com/openvinotoolkit/cvat/pull/4014>)
- Fixed possible color collisions in the generated colormap (<https://github.com/openvinotoolkit/cvat/pull/4007>)
- Original pdf file is deleted when using share(<https://github.com/openvinotoolkit/cvat/pull/3967>)
- Fixed task data upload progressbar(<https://github.com/openvinotoolkit/cvat/pull/4134>)
- Original pdf file is deleted when using share (<https://github.com/openvinotoolkit/cvat/pull/3967>)
- Fixed task data upload progressbar (<https://github.com/openvinotoolkit/cvat/pull/4134>)
### Security
- Updated ELK to 6.8.22 which uses log4j 2.17.0 (<https://github.com/openvinotoolkit/cvat/pull/4052>)
......
{
"name": "cvat-ui",
"version": "1.32.2",
"version": "1.32.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "cvat-ui",
"version": "1.32.2",
"version": "1.32.3",
"license": "MIT",
"dependencies": {
"@ant-design/icons": "^4.6.3",
......
{
"name": "cvat-ui",
"version": "1.32.2",
"version": "1.32.3",
"description": "CVAT single-page application",
"main": "src/index.tsx",
"scripts": {
......
......@@ -60,7 +60,7 @@ function mapStateToProps(state: CombinedState): StateToProps {
startFrame,
stopFrame,
dimension,
assignee: assignee || 'Nobody',
assignee: assignee?.username || 'Nobody',
};
}
......
......@@ -41,6 +41,7 @@ export default function (
return {
...state,
fetching: false,
initialized: true,
};
case OrganizationActionsTypes.ACTIVATE_ORGANIZATION_SUCCESS: {
return {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册