Skip to content

Commit

Permalink
fix(ui): change status actions title (#2717)
Browse files Browse the repository at this point in the history
  • Loading branch information
userquin committed Mar 29, 2024
1 parent f868188 commit f6f50a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/status/StatusActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function reply() {

<div flex-1>
<StatusActionButton
:content="$t('action.boost')"
:content="$t(status.reblogged ? 'action.boosted' : 'action.boost')"
:text="!getPreferences(userSettings, 'hideBoostCount') && status.reblogsCount ? status.reblogsCount : ''"
color="text-green" hover="text-green" elk-group-hover="bg-green/10"
icon="i-ri:repeat-line"
Expand All @@ -77,7 +77,7 @@ function reply() {

<div flex-1>
<StatusActionButton
:content="$t('action.favourite')"
:content="$t(status.favourited ? 'action.favourited' : 'action.favourite')"
:text="!getPreferences(userSettings, 'hideFavoriteCount') && status.favouritesCount ? status.favouritesCount : ''"
:color="useStarFavoriteIcon ? 'text-yellow' : 'text-rose'"
:hover="useStarFavoriteIcon ? 'text-yellow' : 'text-rose'"
Expand All @@ -100,7 +100,7 @@ function reply() {

<div flex-none>
<StatusActionButton
:content="$t('action.bookmark')"
:content="$t(status.bookmarked ? 'action.bookmarked' : 'action.bookmark')"
:color="useStarFavoriteIcon ? 'text-rose' : 'text-yellow'"
:hover="useStarFavoriteIcon ? 'text-rose' : 'text-yellow'"
:elk-group-hover="useStarFavoriteIcon ? 'bg-rose/10' : 'bg-yellow/10' "
Expand Down

0 comments on commit f6f50a5

Please sign in to comment.