0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-31 04:22:44 +00:00

Tweaks to work with current Master

This commit is contained in:
Trevor Buckner
2021-03-07 00:34:47 -05:00
parent 08492b943b
commit c4db94e86f
5 changed files with 29 additions and 9 deletions

View File

@@ -63,7 +63,7 @@ const SharePage = createClass({
<Nav.item href={`/source/${this.processShareId()}`} color='teal' icon='fas fa-code'>
source
</Nav.item>
<Nav.item href={`/download/${this.processShareId()}`} color='red' icon='fa-download'>
<Nav.item href={`/download/${this.processShareId()}`} color='red' icon='fas fa-download'>
download
</Nav.item>
<RecentNavItem brew={this.props.brew} storageKey='view' />

View File

@@ -87,7 +87,7 @@ const BrewItem = createClass({
}
return <a href={`/download/${shareLink}`}>
<i className='fa fa-download' />
<i className='fas fa-download' />
</a>;
},