Skip to content
Open
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
9 changes: 9 additions & 0 deletions funnel/assets/sass/pages/schedule.scss
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,15 @@
max-height: 50vh;
overflow: scroll;
}
.schedule-grid.schedule-grid--compressed .schedule .schedule__table .schedule__row {
content-visibility: auto;
}
.schedule-grid.schedule-grid--compressed .schedule .schedule__date {
display: none;
}
.schedule-grid.schedule-grid--compressed .schedule .schedule__date--upcoming {
display: block;
}
Comment on lines +276 to +281
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is inefficient because the backend is still expending compute power to calculate and render the schedule. If the schedule is not being shown, the code should be skipped.

What we need: a "show previous" action that loads the previous schedule.

}

.calendar-wrapper {
Expand Down