File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
source/views/sis/course-search Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -14,12 +14,8 @@ export async function buildFilters(): Promise<FilterType[]> {
1414
1515 const { ges , departments} = await loadAllCourseFilterOptions ( )
1616
17- const allGEs = ges . map ( ge => ( {
18- title : ge ,
19- } ) )
20- const allDepartments = departments . map ( dep => ( {
21- title : dep ,
22- } ) )
17+ const allGEs = ges . map ( ge => ( { title : ge } ) )
18+ const allDepartments = departments . map ( dep => ( { title : dep } ) )
2319
2420 return [
2521 {
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ type State = {
5757 filters : Array < FilterType > ,
5858 query : string ,
5959 mode : 'loading' | 'browsing' | 'searching' | 'ready' ,
60- } ;
60+ }
6161
6262class CourseSearchView extends React . Component < Props , State > {
6363 static navigationOptions = {
You can’t perform that action at this time.
0 commit comments