Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

fix: show first component of completed subsection #1812

Merged
merged 2 commits into from
Nov 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/NewCourseContentController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ class NewCourseContentController: UIViewController, InterfaceOrientationOverridi
} ?? []
}

currentBlock = blocks.first(where: { !$0.isCompleted }) ?? blocks.last
currentBlock = blocks.first(where: { !$0.isCompleted }) ?? blocks.first
}

private func updateView() {
Expand Down