Skip to content

Commit

Permalink
fix empty href
Browse files Browse the repository at this point in the history
  • Loading branch information
petschki committed Sep 27, 2024
1 parent 498a90b commit 86945ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pat/contentbrowser/src/RecentlyUsed.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
{#each items.reverse() as recentlyUsed}
<li>
<a
href={recentlyUsed.getURL}
href={recentlyUsed.getURL || "#"}
on:click|preventDefault={() => select(recentlyUsed)}
class="dropdown-item"
>
Expand Down

0 comments on commit 86945ac

Please sign in to comment.