name and title has new function for parsing

This commit is contained in:
Daniel Shleifman
2021-06-15 00:24:11 +03:00
parent 8f414e88cb
commit b6fc8c0afb
3 changed files with 33 additions and 15 deletions

View File

@@ -134,7 +134,9 @@ const Torrent = ({ torrent }) => {
</DialogActions>
</Dialog>
{isEditDialogOpen && <AddDialog hash={hash} title={title} poster={poster} handleClose={handleCloseEditDialog} />}
{isEditDialogOpen && (
<AddDialog hash={hash} title={title} name={name} poster={poster} handleClose={handleCloseEditDialog} />
)}
</>
)
}