Skip to content

Commit

Permalink
fix: apply hide reaction count to emojiReactions
Browse files Browse the repository at this point in the history
  • Loading branch information
Clovis committed Dec 28, 2024
1 parent cb5fbfc commit 3c84077
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion elk/components/status/StatusDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ const {
const createdAt = useFormattedDateTime(status.value.createdAt)
const hideReactions = usePreferences('hideReactCount')
const { t } = useI18n()
useHydratedHead({
Expand Down Expand Up @@ -64,7 +66,7 @@ useHydratedHead({
<StatusVisibilityIndicator :status="status" />
</div>
<div justify-self-end>
<StatusEmojiReactions :status="actionStatus" />
<StatusEmojiReactions v-if="!hideReactions" :status="actionStatus" />
</div>
</div>
<div border="t base" py-2>
Expand Down

0 comments on commit 3c84077

Please sign in to comment.