From 9c8c892ad95ab9aaecedc6dcc662c5cf185f28d9 Mon Sep 17 00:00:00 2001 From: Luminarys Date: Mon, 26 Feb 2018 10:51:02 -0800 Subject: [PATCH] Minor fixes --- src/ui/connection.js | 2 +- src/ui/navigation.js | 2 +- src/ui/ratio.js | 4 ++-- src/ui/torrent_details.js | 4 ++-- src/ui/torrent_table.js | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/ui/connection.js b/src/ui/connection.js index 5c4ab62..ed8f9d9 100644 --- a/src/ui/connection.js +++ b/src/ui/connection.js @@ -20,6 +20,7 @@ class ConnectionOverlay extends Component { super(); this.connect = this.connect.bind(this); this.componentDidMount = this.componentDidMount.bind(this); + this.state = {} } componentDidMount() { @@ -97,7 +98,6 @@ class ConnectionOverlay extends Component { type="checkbox" checked={autoconnect} onChange={e => this.setState({ autoconnect: !autoconnect })} - check /> Autoconnect to this server diff --git a/src/ui/navigation.js b/src/ui/navigation.js index 6f503ab..af1cdcd 100644 --- a/src/ui/navigation.js +++ b/src/ui/navigation.js @@ -46,7 +46,7 @@ function render(props) { value={qs.s} onChange={e => update(e.target.value)} /> - + diff --git a/src/ui/ratio.js b/src/ui/ratio.js index 720034b..393dd49 100644 --- a/src/ui/ratio.js +++ b/src/ui/ratio.js @@ -5,14 +5,14 @@ import { formatAmount } from '../bitrate'; export default function Ratio({ up, down }) { const ratio = up / down; if (isNaN(ratio)) { - return + return 0 ; } return ( - + {isFinite(ratio) ? `${ratio.toFixed(2)}` : "∞"} diff --git a/src/ui/torrent_details.js b/src/ui/torrent_details.js index f7da266..65ff4e1 100644 --- a/src/ui/torrent_details.js +++ b/src/ui/torrent_details.js @@ -169,7 +169,7 @@ class Torrent extends Component { > -
{status(torrent.status)}
+
{status(torrent.status)}
)} {selection.length > 3 ? -

+

...{selection.length - 3} more hidden... diff --git a/src/ui/torrent_table.js b/src/ui/torrent_table.js index d68665c..f53f698 100644 --- a/src/ui/torrent_table.js +++ b/src/ui/torrent_table.js @@ -94,7 +94,7 @@ class TorrentTable extends Component { up down - + ratio