From 13886f41563e236f9d94fcc2865bdd1949871494 Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Mon, 23 Jan 2017 23:06:29 -0500 Subject: [PATCH] Fix padding issue with download progress bar Label was not wrapped in span, so the wrong styles were applying --- js/component/file-actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/component/file-actions.js b/js/component/file-actions.js index 569efabf1..80ca4fdd1 100644 --- a/js/component/file-actions.js +++ b/js/component/file-actions.js @@ -176,7 +176,7 @@ let FileActionsRow = React.createClass({ const progress = this.state.fileInfo ? this.state.fileInfo.written_bytes / this.state.fileInfo.total_bytes * 100 : 0, label = this.state.fileInfo ? progress.toFixed(0) + '% complete' : 'Connecting...', - labelWithIcon = {label}; + labelWithIcon = {label}; linkBlock = (