diff --git a/src/App.svelte b/src/App.svelte index d0e0d08..403345a 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -58,6 +58,7 @@ query = info.get('q') } if(group && query) { + result = null do_search() } } @@ -148,19 +149,20 @@ {/each} {/if} -
- {#if loading} -

正在加载...

- {:else if error} + {#if loading} +

正在加载...

+ {:else} + {#if error}

{error}

{:else if result && result.messages.length == 0} -

没有匹配的消息。

- {:else if result && result.has_more} - +

没有匹配的消息。

{:else if result && !result.has_more} -

到底了。

+

到底了。

{/if} -
+ {#if result && result.has_more} +
+ {/if} + {/if}