0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-26 16:02:38 +00:00

Clean up unnecessary code.

This commit is contained in:
G.Ambatte
2021-06-23 21:16:33 +12:00
parent 715ee88f38
commit ff7585b69d

View File

@@ -67,13 +67,13 @@ const SharePage = createClass({
if(!this.state.showDropdown) return null;
return <div className='dropdown'>
<a href={`/source/${this.processShareId()}`} color='teal' icon='fas fa-code' className='item'>
<a href={`/source/${this.processShareId()}`} className='item'>
view
</a>
<a href={`/download/${this.processShareId()}`} color='red' icon='fas fa-download' className='item'>
<a href={`/download/${this.processShareId()}`} className='item'>
download
</a>
<a href={`/new/${this.processShareId()}`} color='red' icon='fas fa-download' className='item'>
<a href={`/new/${this.processShareId()}`} className='item'>
clone to new
</a>
</div>;