Skip to content

Commit

Permalink
fix query params
Browse files Browse the repository at this point in the history
  • Loading branch information
zhammer committed Jun 14, 2021
1 parent e2fb49c commit 983eda6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Directory.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
export let query: any;
$: sort = {
column: query.C || "N",
order: query.O || "A",
column: query.get('C') || "N",
order: query.get('O') || "A",
};
let isRoot = directory.slug === "";
Expand Down

0 comments on commit 983eda6

Please sign in to comment.