Fixing magnet buttons.

This commit is contained in:
Dessalines 2018-10-25 11:41:45 -07:00
parent 6059eda831
commit 5a3cd8f9c5
1 changed files with 3 additions and 3 deletions

View File

@ -100,10 +100,10 @@ class TorrentSearchComponent extends Component<any, State> {
{moment(torrent.created_unix * 1000).fromNow()}
</td>
<td class="text-right">
<a href={magnetLink(torrent.infohash)}>
<i title="magnet link" class="fas fa-fw fa-magnet mr-lg-2"></i>
<a class="btn btn-sm" href={magnetLink(torrent.infohash)}>
<i title="magnet link" class="fas fa-fw fa-magnet"></i>
</a>
<a href={`https://gitlab.com/dessalines/torrents.csv/issues/new?issue[assignee_id]=&issue[milestone_id]=&issue[title]=Report%20Torrent%20infohash%20${torrent.infohash}`}>
<a class="btn btn-sm" href={`https://gitlab.com/dessalines/torrents.csv/issues/new?issue[assignee_id]=&issue[milestone_id]=&issue[title]=Report%20Torrent%20infohash%20${torrent.infohash}`}>
<i title="Report torrent" class="fas fa-fw fa-flag"></i>
</a>
</td>