fixed small typo

This commit is contained in:
Stefan Schmidt-Bilkenroth 2023-11-16 14:50:20 +01:00
parent 1f6d85a072
commit 7969da352a

View file

@ -147,7 +147,7 @@ const updateCarousel = function(slides, posts) {
<p class="card-text text-right"> <p class="card-text text-right">
<small class="text-muted"><a href="${post.url}" target="_blank" data-time="${post.created_at}">${timeAgo(secondsAgo(new Date(post.created_at)))}</a> <small class="text-muted"><a href="${post.url}" target="_blank" data-time="${post.created_at}">${timeAgo(secondsAgo(new Date(post.created_at)))}</a>
${post.favourites_count ? `, <b>${post.favourites_count}</b> mal favorisiert` : '' } ${post.favourites_count ? `, <b>${post.favourites_count}</b> mal favorisiert` : '' }
${post.replies_count ? `, <b>${post.replies_count}</b> Antworten` : '' } ${post.replies_count ? `, <b>${post.replies_count}</b> mal beantwortet` : '' }
${post.reblogs_count ? `, <b>${post.reblogs_count}</b> mal geteilt` : '' } ${post.reblogs_count ? `, <b>${post.reblogs_count}</b> mal geteilt` : '' }
</small> </small>
</p> </p>