This commit is contained in:
Daniel Shleifman
2021-05-31 19:33:27 +03:00
parent c2793438ad
commit 191b45fe7f

View File

@@ -118,7 +118,7 @@ export default function DialogTorrentDetailsContent({ closeDialog, torrent }) {
{...(isDetailedCacheView && { onBack: () => setIsDetailedCacheView(false) })} {...(isDetailedCacheView && { onBack: () => setIsDetailedCacheView(false) })}
/> />
<div style={{ minHeight: '80vh' }}> <div style={{ minHeight: '80vh', overflow: 'auto' }}>
{isLoading ? ( {isLoading ? (
<div style={{ minHeight: '80vh', display: 'grid', placeItems: 'center' }}> <div style={{ minHeight: '80vh', display: 'grid', placeItems: 'center' }}>
<CircularProgress /> <CircularProgress />
@@ -251,7 +251,7 @@ export default function DialogTorrentDetailsContent({ closeDialog, torrent }) {
</Button> </Button>
</CacheSection> </CacheSection>
{/* <TorrentFilesSection> <TorrentFilesSection>
<SectionTitle mb={20}>Torrent Content</SectionTitle> <SectionTitle mb={20}>Torrent Content</SectionTitle>
{!playableFileList?.length ? ( {!playableFileList?.length ? (
@@ -309,7 +309,7 @@ export default function DialogTorrentDetailsContent({ closeDialog, torrent }) {
</Table> </Table>
</> </>
)} )}
</TorrentFilesSection> */} </TorrentFilesSection>
</DialogContentGrid> </DialogContentGrid>
)} )}
</div> </div>