Shorten counter titles in stats

This commit is contained in:
Claudio Ortolina
2025-09-02 12:36:22 +03:00
parent ad335961f8
commit 3316df1861
3 changed files with 10 additions and 26 deletions
@@ -10,13 +10,13 @@
class="col-span-3 sm:col-span-2"
/>
<.counter
title={gettext("Total collection")}
title={gettext("Collection")}
count={@collection_count}
path={~p"/collection"}
/>
<.counter title={gettext("Total wishlist")} count={@wishlist_count} path={~p"/wishlist"} />
<.counter title={gettext("Wishlist")} count={@wishlist_count} path={~p"/wishlist"} />
<.counter
title={gettext("Total scrobbles")}
title={gettext("Scrobbles")}
count={to_compact(@scrobble_count)}
tooltip={@scrobble_count}
/>