Skip to content

Commit

Permalink
fix: wrong partially completed state used for fetching data (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidemarcoli authored Sep 16, 2024
1 parent 970253c commit 5eac722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/summary/+page.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const load = (async ({ locals }) => {
fn.count<number>('_id').filterWhere('last_state', '=', 'Symlinked').as('Symlinked'),
fn
.count<number>('_id')
.filterWhere('last_state', '=', 'Partially Completed')
.filterWhere('last_state', '=', 'PartiallyCompleted')
.as('PartiallyCompleted'),
fn.count<number>('_id').filterWhere('last_state', '=', 'Unknown').as('Unknown')
])
Expand Down

0 comments on commit 5eac722

Please sign in to comment.