diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2022-07-02 00:38:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-02 00:38:51 +0000 |
commit | 340e944446f9672b79f28ea1439f8ac068c70202 (patch) | |
tree | f47319600eb5dddbae284a0e0e1a56898fe0a3e8 /src/routes/items.svelte | |
parent | 8a0015a03cc48e6fd75cdc8d355b5064f422b53a (diff) | |
parent | 84b6abd732d32b2a29a581faab19ba0fce86563f (diff) | |
download | skyblock-stats-340e944446f9672b79f28ea1439f8ac068c70202.tar.gz skyblock-stats-340e944446f9672b79f28ea1439f8ac068c70202.tar.bz2 skyblock-stats-340e944446f9672b79f28ea1439f8ac068c70202.zip |
Merge pull request #5 from skyblockstats/sold-auctions
Show sold auctions in profile
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> |