We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3309ecf commit 2242358Copy full SHA for 2242358
source/views/sis/course-search/lib/format-filter-combo.js
@@ -18,6 +18,11 @@ export function formatFilterCombo(filters: FilterType[]): FilterComboType {
18
19
function describeFilter(f: FilterType, filters: FilterType[]) {
20
switch (f.key) {
21
+ case 'level': {
22
+ const levelFilter = filterListSpecs(filters).find(f => f.key === 'level')
23
+ const selectedLevels = levelFilter ? levelFilter.spec.selected : []
24
+ return selectedLevels.map(level => level.title).join('/') + ' Level'
25
+ }
26
case 'spaceAvailable': {
27
return 'Space Available'
28
}
0 commit comments