Skip to content

Commit

Permalink
style: use icon fa-poll icon instead of fa-chart-bar
Browse files Browse the repository at this point in the history
  • Loading branch information
gianniguida committed Jan 21, 2025
1 parent f4a50b9 commit f01563a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/src/forum/components/PollView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export default class PollView extends Component<PollAttrs, PollState> {
items.add(
'max-votes',
<span>
<i className="icon fas fa-chart-bar fa-fw" />
<i className="icon fas fa-poll fa-fw" />
{app.translator.trans('fof-polls.forum.max_votes_allowed', { max: maxVotes })}
</span>
);
Expand All @@ -195,7 +195,7 @@ export default class PollView extends Component<PollAttrs, PollState> {
items.add(
'total-vote-count',
<span>
<i className="icon fas fa-chart-bar fa-fw" aria-hidden="true" />
<i className="icon fas fa-poll fa-fw" aria-hidden="true" />
{app.translator.trans('fof-polls.forum.poll.total_votes', { count: poll.voteCount() })}
</span>
);
Expand Down

0 comments on commit f01563a

Please sign in to comment.