improve downloads dialog

This commit is contained in:
SpikeHD
2022-05-11 21:27:43 -07:00
parent 4fa269d75e
commit cd4fe6b9fb
3 changed files with 15 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ export default class MiniDialog extends React.Component<IProps, never> {
render() {
return (
<div className="DownloadSection">
<span>{this.props.downloadName}</span>
<span>{this.props.downloadName} - {this.props.downloadManager.getDownloadSize(this.props.downloadName)}</span>
<div className="DownloadSectionInner">
<ProgressBar path={this.props.downloadName} downloadManager={this.props.downloadManager} />
</div>