this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Increase default getDays limit to 365

alice 625dcc7a 8cab66cd

+1 -1
+1 -1
src/core/db.ts
··· 189 189 } 190 190 191 191 // Query functions for API 192 - export function getDays(limit = 30): DayListItem[] { 192 + export function getDays(limit = 365): DayListItem[] { 193 193 const database = getDb(); 194 194 const rows = database.query< 195 195 { date: string; project_count: number; session_count: number },