We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 483b9e9 commit 8f7cc5fCopy full SHA for 8f7cc5f
src/routes/(app)/mangadex/list/(current-user)/SearchContent.svelte
@@ -103,10 +103,7 @@
103
onclick={() => {
104
goto(
105
route("/mangadex/list/[id]", {
106
- id:
107
- list.visibility == CustomListVisibility.Private
108
- ? `private:${list.id}`
109
- : list.id
+ id: list.visibility == CustomListVisibility.Private ? `private:${list.id}` : list.id
110
})
111
);
112
}}
@@ -154,7 +151,14 @@
154
151
/>
155
152
{/if}
156
153
157
-<div class="observer-trigger" bind:this={to_obserce_bind}>
+<!-- svelte-ignore a11y_no_static_element_interactions -->
+<div
+ class="observer-trigger"
+ bind:this={to_obserce_bind}
158
+ onmouseenter={() => {
159
+ query.fetchNextPage();
160
+ }}
161
+>
162
{#if isFetching}
163
<Fetching />
164
{:else if hasNext}
0 commit comments