diff --git a/frontend/src/components/modals/HistoryModal.tsx b/frontend/src/components/modals/HistoryModal.tsx index 03c33eae0..9976d5688 100644 --- a/frontend/src/components/modals/HistoryModal.tsx +++ b/frontend/src/components/modals/HistoryModal.tsx @@ -5,7 +5,8 @@ import { useMovieHistory, } from "@/apis/hooks"; import { withModal } from "@/modules/modals"; -import { faFileExcel } from "@fortawesome/free-solid-svg-icons"; +import { faFileExcel, faInfoCircle } from "@fortawesome/free-solid-svg-icons"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { Badge, Center, Text } from "@mantine/core"; import { FunctionComponent, useMemo } from "react"; import { Column } from "react-table"; @@ -177,6 +178,16 @@ const EpisodeHistoryView: FunctionComponent = ({ ); }, }, + { + accessor: "description", + Cell: ({ value }) => { + return ( + + + + ); + }, + }, { // Actions accessor: "blacklisted",