Fix case insensitive search and display

This commit is contained in:
Chord 2019-12-30 16:21:55 -05:00
parent 0e4123fe98
commit 817796e181
2 changed files with 14 additions and 2 deletions

View file

@ -50,6 +50,11 @@
<button type="submit" class="btn btn-primary mb-2">Search</button>
</form>
{#if results}
{#if results.length > 0}
<p>{results.length} results found.</p>
{:else}
<p>No results found.</p>
{/if}
<ol>
{#each results as result, i}
{#if result.type == "account"}