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

* Fixed statistics modal when the job is assigned to someone

* Updated version
main
Boris Sekachev 4 years ago committed by GitHub
parent 8e4dd14de0
commit cd1f89eb01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,12 +1,12 @@
{ {
"name": "cvat-ui", "name": "cvat-ui",
"version": "1.32.2", "version": "1.32.3",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "cvat-ui", "name": "cvat-ui",
"version": "1.32.2", "version": "1.32.3",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ant-design/icons": "^4.6.3", "@ant-design/icons": "^4.6.3",

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

@ -60,7 +60,7 @@ function mapStateToProps(state: CombinedState): StateToProps {
startFrame, startFrame,
stopFrame, stopFrame,
dimension, dimension,
assignee: assignee || 'Nobody', assignee: assignee?.username || 'Nobody',
}; };
} }

@ -41,6 +41,7 @@ export default function (
return { return {
...state, ...state,
fetching: false, fetching: false,
initialized: true,
}; };
case OrganizationActionsTypes.ACTIVATE_ORGANIZATION_SUCCESS: { case OrganizationActionsTypes.ACTIVATE_ORGANIZATION_SUCCESS: {
return { return {

Loading…
Cancel
Save