Skip to content

Commit

Permalink
fix: List item view count
Browse files Browse the repository at this point in the history
  • Loading branch information
kiosion committed Apr 5, 2024
1 parent c9873b1 commit 383a0b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svelte-app/src/components/lists/list-item.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
>{document.tags[0].title.toLowerCase()}</span
>
{/if}
<p>{$t('{views} views', { views: $parseViews((document.views ?? 0) + 1) })}</p>
<p>{$t('{views} views', { views: $parseViews(document.views ?? 0) })}</p>
</div>

<h1
Expand Down

0 comments on commit 383a0b4

Please sign in to comment.