Skip to content

Commit

Permalink
Reload data when query changes
Browse files Browse the repository at this point in the history
  • Loading branch information
allanlasser committed Feb 20, 2024
1 parent b8306bd commit 255ca6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/projects/Browser.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
$: if (visible) {
load($filter);
}
$: $lastUpdated, load($filter);
$: $lastUpdated, $query, load($filter);
$: loadNext = () => load($filter, next_cursor);
$: loadPrev = () => load($filter, previous_cursor);
$: reload = () => load($filter);
Expand Down

0 comments on commit 255ca6d

Please sign in to comment.