diff --git a/src/ui.rs b/src/ui.rs index 5334ea5..426ebb3 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -728,7 +728,7 @@ fn render_log_view(frame: &mut Frame, app: &App) { let is_entry = if is_by_project { line.starts_with(" ") // 8 spaces for ByProject } else { - line.starts_with(" ") && !line.starts_with(" ") // 4 spaces for ByDate + line.starts_with(" ") && !line.starts_with(" ") && line.trim() != "---" // 4 spaces for ByDate }; if is_entry {