Skip to content

Commit

Permalink
Merge pull request #6115 from Ocelot-Social-Community/6069-change-sho…
Browse files Browse the repository at this point in the history
…ut-horn-on-posts-to-heart

feat(webapp): change shout icon `bullhorn` to `heart-o`
  • Loading branch information
Tirokk authored Mar 10, 2023
2 parents 4807bde + 8a4ee75 commit 8e874b6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion webapp/components/PostTeaser/PostTeaser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</div>
<div v-else class="categories-placeholder"></div>
<counter-icon
icon="bullhorn"
icon="heart-o"
:count="post.shoutedCount"
:title="$t('contribution.amount-shouts', { amount: post.shoutedCount })"
/>
Expand Down
2 changes: 1 addition & 1 deletion webapp/components/ShoutButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
:loading="loading"
:disabled="disabled"
:filled="shouted"
icon="bullhorn"
icon="heart-o"
circle
@click="toggle"
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ storiesOf('Generic/BaseButton', module)
template: `
<div>
<base-button icon="edit">With Text</base-button>
<base-button icon="bullhorn" />
<base-button icon="heart-o" />
<base-button icon="trash" disabled />
<base-button icon="trash" loading />
</div>
Expand Down
2 changes: 1 addition & 1 deletion webapp/components/generic/SearchPost/SearchPost.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="metadata">
<span class="counts">
<counter-icon icon="comments" :count="option.commentsCount" soft />
<counter-icon icon="bullhorn" :count="option.shoutedCount" soft />
<counter-icon icon="heart-o" :count="option.shoutedCount" soft />
<counter-icon icon="hand-pointer" :count="option.clickedCount" soft />
<counter-icon icon="eye" :count="option.viewedTeaserCount" soft />
</span>
Expand Down

0 comments on commit 8e874b6

Please sign in to comment.