Skip to content

Commit

Permalink
Update footer icons for FA 6 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
dsevillamartin committed Jan 21, 2024
1 parent 49da2bd commit ebccfde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/src/forum/components/CustomFooter.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export default class CustomFooter extends Component {
{m.trust(app.forum.attribute('fof-custom-footer.text') || '')}
</div>
<div className="Footer--Icons">
<i className={`Footer--Show fa fa-info-circle ${this.open && 'hidden'}`} onclick={() => (this.open = true)} />
<i className={`Footer--Hide fa fa-caret-down ${!this.open && 'hidden'}`} onclick={() => (this.open = false)} />
<i className={`Footer--Show fas fa-info-circle ${this.open && 'hidden'}`} onclick={() => (this.open = true)} />
<i className={`Footer--Hide fas fa-caret-down ${!this.open && 'hidden'}`} onclick={() => (this.open = false)} />
</div>
</div>
</div>
Expand Down

0 comments on commit ebccfde

Please sign in to comment.