From 00ade0a78bdcda9ce72b7682a789ade265772256 Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Mon, 16 May 2016 01:48:27 -0400 Subject: [PATCH] Make pause/resume button update correctly --- js/page/my_files.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/page/my_files.js b/js/page/my_files.js index a7512dc93..a6bec5487 100644 --- a/js/page/my_files.js +++ b/js/page/my_files.js @@ -56,7 +56,7 @@ var MyFilesRow = React.createClass({
{ pauseLink }
-
+ { this.onRemoveClicked() } } />
); @@ -88,8 +88,8 @@ var MyFilesPage = React.createClass({ var content = You haven't downloaded anything from LBRY yet. Go !; } else { var content = []; - for (let {completed, written_bytes, total_bytes, lbry_uri, metadata} of this.state.filesInfo) { - let {name, stopped, thumbnail} = metadata; + for (let {completed, written_bytes, total_bytes, lbry_uri, stopped, metadata} of this.state.filesInfo) { + let {name, thumbnail} = metadata; content.push(); }