fix: clean up spinner and disabled state on download page (#294)

This commit is contained in:
Cafe137
2022-01-25 18:02:57 +01:00
committed by GitHub
parent 1310deb17a
commit a406e0fc01
+2 -2
View File
@@ -32,12 +32,12 @@ export function DownloadActionBar({
<SwarmButton onClick={onDownload} iconType={Download} disabled={loading} loading={loading}>
Download
</SwarmButton>
<SwarmButton onClick={onCancel} iconType={X} disabled={loading} loading={loading} cancel>
<SwarmButton onClick={onCancel} iconType={X} disabled={loading} cancel>
Close
</SwarmButton>
</ExpandableListItemActions>
<Box mb={1} mr={1}>
<SwarmButton onClick={onUpdateFeed} iconType={Bookmark}>
<SwarmButton onClick={onUpdateFeed} iconType={Bookmark} disabled={loading}>
Update Feed
</SwarmButton>
</Box>