- commit
- 4b72024
- parent
- 2d4cfdd
- author
- Eric Bower
- date
- 2021-09-01 04:56:49 +0000 UTC
fix warning
1 files changed,
+3,
-3
+3,
-3
1@@ -152,17 +152,17 @@
2 {#if sort === 'stars'}
3 stars
4 {:else}
5- <a href="#" on:click={(e) => setSort(e, 'stars')}>stars</a>
6+ <a href={'#'} on:click={(e) => setSort(e, 'stars')}>stars</a>
7 {/if}
8 {#if sort === 'createdAt'}
9 created
10 {:else}
11- <a href="#" on:click={(e) => setSort(e, 'createdAt')}>created</a>
12+ <a href={'#'} on:click={(e) => setSort(e, 'createdAt')}>created</a>
13 {/if}
14 {#if sort === 'updatedAt'}
15 updated
16 {:else}
17- <a href="#" on:click={(e) => setSort(e, 'updatedAt')}>updated</a>
18+ <a href={'#'} on:click={(e) => setSort(e, 'updatedAt')}>updated</a>
19 {/if}
20 </div>
21 {#each filterTotal as plugin}