File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/app/components/elements/layout Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -315,7 +315,7 @@ const AssignmentStatusCheckbox = (props: AssignmentStatusCheckboxProps) => {
315
315
id = { status ?? "" } filterTitle = { status }
316
316
onInputChange = { ( ) => ! statusFilter . includes ( status ) ? setStatusFilter ( c => [ ...c . filter ( s => s !== AssignmentState . ALL ) , status ] ) : setStatusFilter ( c => c . filter ( s => s !== status ) ) }
317
317
checked = { statusFilter . includes ( status ) }
318
- count = { count }
318
+ count = { count } { ... rest }
319
319
/> ;
320
320
} ;
321
321
@@ -333,7 +333,7 @@ const AssignmentStatusAllCheckbox = (props: Omit<AssignmentStatusCheckboxProps,
333
333
}
334
334
} }
335
335
checked = { statusFilter . includes ( AssignmentState . ALL ) }
336
- count = { count }
336
+ count = { count } { ... rest }
337
337
/> ;
338
338
} ;
339
339
You can’t perform that action at this time.
0 commit comments