Skip to content

Commit

Permalink
feat: exclude restriction codes (#1033)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 authored Nov 18, 2024
1 parent 0306d00 commit c2f7d35
Show file tree
Hide file tree
Showing 10 changed files with 454 additions and 422 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { Grades } from '$lib/grades';
import { WebSOC } from '$lib/websoc';
import { useCoursePaneStore } from '$stores/CoursePaneStore';

function RightPane() {
export function CoursePaneRoot() {
const { key, forceUpdate, searchIsDisplayed, displaySearch, displaySections } = useCoursePaneStore();

const handleSearch = useCallback(() => {
Expand Down Expand Up @@ -64,5 +64,3 @@ function RightPane() {
</Box>
);
}

export default RightPane;
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ export default function CourseRenderPane(props: { id?: number }) {
building: formData.building,
room: formData.room,
division: formData.division,
excludeRestrictionCodes: formData.excludeRestrictionCodes.split('').join(','), // comma delimited string (e.g. ABC -> A,B,C)
};

const gradesQueryParams = {
Expand Down
Loading

0 comments on commit c2f7d35

Please sign in to comment.