diff options
author | mat <github@matdoes.dev> | 2022-07-01 19:00:37 -0500 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-07-01 19:00:37 -0500 |
commit | 1a9887df01f8112c3c47f9cb0f4b28e69bdb7141 (patch) | |
tree | e9d54693d405023c091939900c29db3b20430abf /src/routes/items.svelte | |
parent | 504c34660c80f605da38426a7e18b9849e1e9923 (diff) | |
download | skyblock-stats-1a9887df01f8112c3c47f9cb0f4b28e69bdb7141.tar.gz skyblock-stats-1a9887df01f8112c3c47f9cb0f4b28e69bdb7141.tar.bz2 skyblock-stats-1a9887df01f8112c3c47f9cb0f4b28e69bdb7141.zip |
add pagination to auctions
Diffstat (limited to 'src/routes/items.svelte')
-rw-r--r-- | src/routes/items.svelte | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/routes/items.svelte b/src/routes/items.svelte index f836de0..82b3ee3 100644 --- a/src/routes/items.svelte +++ b/src/routes/items.svelte @@ -71,9 +71,11 @@ <main> <div class="last-updated"> - Last updated: <a href="https://github.com/mat-1/skyblock-items-history/commits/main"><time datetime="${data.lastUpdated}"> - {millisecondsToTime(now - data.lastUpdated)} ago - </time></a> + Last updated: <a href="https://github.com/mat-1/skyblock-items-history/commits/main" + ><time datetime="${data.lastUpdated}"> + {millisecondsToTime(now - data.lastUpdated)} ago + </time></a + > </div> <h1>SkyBlock Item List</h1> <p class="results-count">{filteredItems.length.toLocaleString()} items</p> |