Skip to content

Commit

Permalink
Fix scheduled add-ons error display
Browse files Browse the repository at this point in the history
  • Loading branch information
allanlasser committed Mar 27, 2024
1 parent f8e5701 commit 862933e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/addons/runs/Scheduled.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
$: next_url = res.next ? new URL(res.next) : null;
$: prev_url = res.previous ? new URL(res.previous) : null;
$: events = res.results ?? [];
$: empty = !loading && !Boolean(res.results?.length);
$: empty = !loading && !Boolean(res.results?.length) && !error;
export async function load(url?: string | URL) {
try {
Expand Down

0 comments on commit 862933e

Please sign in to comment.