Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/src/components/MultipleScheduleDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const NUM_PER_PAGE = 25;
interface Props {
schedules: Schedule[];
numPerPage?: number;
pin: (sch: Schedule) => void;
}

export default function MultipleScheduleDisplay(props: Props) {
Expand All @@ -26,7 +27,7 @@ export default function MultipleScheduleDisplay(props: Props) {
{schedulesToShow.map((schedule: Schedule, s) => (
<div key={s}>
<u>Schedule #{s + 1}</u>
<ScheduleDisplay schedule={schedule} />
<ScheduleDisplay schedule={schedule} pin={props.pin}/>
</div>
))}

Expand Down
1 change: 1 addition & 0 deletions app/src/components/MultipleSelectionDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ interface Props {
newSelection: () => void;
handleRemove: (sectionToRemove: Section) => void;
handleDeleteSelection: (ind: number) => void;

}

export default function MultipleSelectionDisplay(props: Props) {
Expand Down
Loading