Disable download button when downloading

This commit is contained in:
2025-07-19 16:15:35 -07:00
parent 1349f779a0
commit 2604dec0f4
7 changed files with 20 additions and 19 deletions

View File

@@ -16,6 +16,7 @@ function App () {
...prev,
...versions.map(v => new DownloadProgress(v, 0, false))
])
return;
}
@@ -33,7 +34,7 @@ function App () {
function renderContent () {
if (hash === '#installs') {
return <Installs downloadVersions={downloadVersions} />
return <Installs downloadVersions={downloadVersions} downloadProgress={downloadProgress} />
} else if (hash === '#settings') {
return <Settings />
}