parent
f77da92e5c
commit
0c82980462
|
@ -116,7 +116,7 @@ export class Search extends Component<any, State> {
|
|||
<th class="text-right">Size</th>
|
||||
<th class="text-right">Seeds</th>
|
||||
<th class="text-right d-none d-md-table-cell">Leeches</th>
|
||||
<th class="text-right d-none d-md-table-cell">Created</th>
|
||||
<th class="text-right d-none d-md-table-cell">Scraped</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -148,9 +148,9 @@ export class Search extends Component<any, State> {
|
|||
<span>{torrent.leechers}</span>
|
||||
</td>
|
||||
<td class="text-right text-muted d-none d-md-table-cell"
|
||||
data-balloon={`Scraped ${moment(torrent.scraped_date * 1000).fromNow()}`}
|
||||
data-balloon={`Created ${moment(torrent.created_unix * 1000).fromNow()}`}
|
||||
data-balloon-pos="down">
|
||||
{moment(torrent.created_unix * 1000).fromNow()}
|
||||
{moment(torrent.scraped_date * 1000).fromNow()}
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<a class="btn btn-sm no-outline px-1"
|
||||
|
|
Loading…
Reference in New Issue