File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
cvat-ui/src/components/task-page Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ non-ascii paths while adding files from "Connected file share" (issue #4428)
45
45
- A trailing slash in hostname does't allow SDK to send some requests
46
46
(< https://github.com/opencv/cvat/pull/5057 > )
47
47
- Double modal export/backup a task/project (< https://github.com/opencv/cvat/pull/5075 > )
48
+ - Fixed bug of computing Job's unsolved/resolved issues numbers (< https://github.com/opencv/cvat/pull/5101 > )
48
49
49
50
### Security
50
51
- TDB
Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ function ReviewSummaryComponent({ jobInstance }: { jobInstance: any }): JSX.Elem
33
33
. issues ( jobInstance . id )
34
34
. then ( ( issues : any [ ] ) => {
35
35
setSummary ( {
36
- issues_unsolved : issues . filter ( ( issue ) => ! issue . resolved_date ) . length ,
37
- issues_resolved : issues . filter ( ( issue ) => issue . resolved_date ) . length ,
36
+ issues_unsolved : issues . filter ( ( issue ) => ! issue . resolved ) . length ,
37
+ issues_resolved : issues . filter ( ( issue ) => issue . resolved ) . length ,
38
38
} ) ;
39
39
} )
40
40
. catch ( ( _error : any ) => {
You can’t perform that action at this time.
0 commit comments