Fix ProgressBar changes from updating react-bootstrap

This commit is contained in:
Brett Sun 2016-07-08 16:17:45 +02:00
parent 652a768208
commit 819b367896
1 changed files with 3 additions and 2 deletions

View File

@ -92,8 +92,9 @@ let MediaContainer = React.createClass({
<em>We successfully received your video and it is now being encoded.
<br />You can leave this page and check back on the status later.</em>
</p>
<ProgressBar now={digitalWork.isEncoding}
label="%(percent)s%"
<ProgressBar
now={digitalWork.isEncoding}
label={`${digitalWork.isEncoding}%`}
className="ascribe-progress-bar" />
</div>
);