#28: Fix Linux upgrade

This commit is contained in:
Scott E. Graves
2019-07-07 21:55:11 -05:00
parent 57cfddf803
commit 047678f44c
2 changed files with 28 additions and 7 deletions

View File

@@ -7,12 +7,14 @@ const mapStateToProps = state => {
return {
DownloadName: state.download.DownloadName,
DownloadProgress: state.download.DownloadProgress,
Platform: state.common.Platform,
};
};
export default connect(mapStateToProps)(props => {
const width = props.Platform === 'linux' ? '480px' : '380px';
return (
<Box dxStyle={{width: '380px', height: 'auto', padding: '5px'}}>
<Box dxStyle={{width: width, height: 'auto', padding: '5px'}}>
<div style={{width: '100%', height: 'auto'}}>
<h1 style={{width: '100%', textAlign: 'center'}}>{'Downloading ' + props.DownloadName}</h1>
</div>