Changing space indents on UI. Changing td aligns to bootstrap text-right
This commit is contained in:
parent
43ed6e0ba4
commit
a442341cd0
|
@ -1,5 +1,5 @@
|
|||
[*.{js,jsx,ts,tsx,json}]
|
||||
indent_style = tab
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
|
|
@ -81,9 +81,9 @@ class TorrentSearchComponent extends Component<any, State> {
|
|||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th align="right">Size</th>
|
||||
<th align="right">Seeds</th>
|
||||
<th align="right">Leeches</th>
|
||||
<th class="text-right">Size</th>
|
||||
<th class="text-right">Seeds</th>
|
||||
<th class="text-right">Leeches</th>
|
||||
<th>Created</th>
|
||||
<th>Scraped</th>
|
||||
<th></th>
|
||||
|
@ -93,12 +93,12 @@ class TorrentSearchComponent extends Component<any, State> {
|
|||
{this.state.results.torrents.map(torrent => (
|
||||
<tr>
|
||||
<td>{torrent.name}</td>
|
||||
<td align="right">{humanFileSize(torrent.size_bytes, true)}</td>
|
||||
<td align="right">{torrent.seeders}</td>
|
||||
<td align="right">{torrent.leechers}</td>
|
||||
<td class="text-right">{humanFileSize(torrent.size_bytes, true)}</td>
|
||||
<td class="text-right">{torrent.seeders}</td>
|
||||
<td class="text-right">{torrent.leechers}</td>
|
||||
<td>{moment(torrent.created_unix * 1000).fromNow()}</td>
|
||||
<td>{moment(torrent.scraped_date * 1000).fromNow()}</td>
|
||||
<td align="right">
|
||||
<td class="text-right">
|
||||
<a href={magnetLink(torrent.infohash)}>
|
||||
<i class="fas fa-magnet"></i>
|
||||
</a>
|
||||
|
|
Loading…
Reference in New Issue