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