mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-15 16:44:43 +01:00
Add element id's and their documentation
This commit is contained in:
@@ -21,12 +21,12 @@ export default class DownloadSection extends React.Component<IProps, never> {
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div className="DownloadSection">
|
||||
<div className="DownloadTitle">
|
||||
<div className="DownloadPath">{this.getFilenameFromPath()}</div>
|
||||
<div className="DownloadStatus"> - {this.props.downloadManager.getDownloadSize(this.props.downloadName)}</div>
|
||||
<div className="DownloadSection" id={'commonDownloadSectionContainer'}>
|
||||
<div className="DownloadTitle" id={'commonDownloadSectionTitle'}>
|
||||
<div className="DownloadPath" id={'commonDownloadSectionPath'}>{this.getFilenameFromPath()}</div>
|
||||
<div className="DownloadStatus" id={'commonDownloadSectionSize'}> - {this.props.downloadManager.getDownloadSize(this.props.downloadName)}</div>
|
||||
</div>
|
||||
<div className="DownloadSectionInner">
|
||||
<div className="DownloadSectionInner" id={'commonDownloadSectionProgress'}>
|
||||
<ProgressBar path={this.props.downloadName} downloadManager={this.props.downloadManager} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user