File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1126,7 +1126,7 @@ mockGetCourseImports.inProgressImport = {
11261126 displayName : 'DemoX 2025 T4' ,
11271127 } ,
11281128 targetCollection : null ,
1129- state : 'InProgress ' ,
1129+ state : 'In Progress ' ,
11301130 progress : 0.5012 ,
11311131} satisfies api . CourseImport ;
11321132mockGetCourseImports . applyMock = ( ) => jest . spyOn (
Original file line number Diff line number Diff line change @@ -798,7 +798,7 @@ export interface CourseImport {
798798 key : string ;
799799 title : string ;
800800 } | null ;
801- state : 'Succeeded' | 'Failed' | 'InProgress ' ;
801+ state : 'Succeeded' | 'Failed' | 'In Progress ' ;
802802 progress : number ;
803803}
804804
Original file line number Diff line number Diff line change @@ -27,21 +27,21 @@ const BORDER_CLASS = {
2727 Succeeded : 'status-border-imported' ,
2828 Failed : 'status-border-failed' ,
2929 Partial : 'status-border-partial' ,
30- InProgress : 'status-border-in-progress' ,
30+ 'In Progress' : 'status-border-in-progress' ,
3131} ;
3232
3333const STATE_ICON = {
3434 Succeeded : Check ,
3535 Failed : Error ,
3636 Partial : Warning ,
37- InProgress : IncompleteCircle ,
37+ 'In Progress' : IncompleteCircle ,
3838} ;
3939
4040const STATE_ICON_COLOR_CLASS = {
4141 Succeeded : undefined ,
4242 Failed : 'text-danger-500' ,
4343 Partial : 'text-warning-500' ,
44- InProgress : undefined ,
44+ 'In Progress' : undefined ,
4545} ;
4646
4747const StateIcon = ( { state } : { state : CourseImport [ 'state' ] } ) => (
You can’t perform that action at this time.
0 commit comments