diff --git a/frontend/js/components/torrents/list/torrentGroup.js b/frontend/js/components/torrents/list/torrentGroup.js index c44d95a..8cfe62f 100644 --- a/frontend/js/components/torrents/list/torrentGroup.js +++ b/frontend/js/components/torrents/list/torrentGroup.js @@ -1,6 +1,7 @@ import React from "react"; import PropTypes from "prop-types"; import { useSelector } from "react-redux"; +import { Link } from "react-router-dom"; import { Torrent } from "./torrent"; import { Poster } from "./poster"; @@ -17,11 +18,18 @@ export const TorrentGroup = ({ torrentKey }) => { const title = (torrent) => { switch (torrent.type) { case "movie": - return torrent.video.title; + return {torrent.video.title}; case "episode": - return torrent.video.show_title; + return ( + + {torrent.video.show_title} + + ); default: - return "Files"; + return Files; } };