diff options
-rw-r--r-- | frontend/src/components/modals/HistoryModal.tsx | 13 |
1 files changed, 12 insertions, 1 deletions
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"; @@ -178,6 +179,16 @@ const EpisodeHistoryView: FunctionComponent<EpisodeHistoryViewProps> = ({ }, }, { + accessor: "description", + Cell: ({ value }) => { + return ( + <TextPopover text={value}> + <FontAwesomeIcon size="sm" icon={faInfoCircle}></FontAwesomeIcon> + </TextPopover> + ); + }, + }, + { // Actions accessor: "blacklisted", Cell: ({ row, value }) => { |