diff --git a/frontend/src/issues-list-board/issues-list-card.tsx b/frontend/src/issues-list-board/issues-list-card.tsx index d66e243..fd05210 100644 --- a/frontend/src/issues-list-board/issues-list-card.tsx +++ b/frontend/src/issues-list-board/issues-list-card.tsx @@ -6,20 +6,24 @@ import * as TimePassedNs from '../misc-components/time-passed'; import * as TagsNs from '../misc-components/tags'; import * as IssueHrefNs from '../misc-components/issue-href'; import * as IssueDetailsDialogNs from '../misc-components/issue-details-dialog'; +import * as UnreadedFlagNs from '../misc-components/unreaded-flag'; export type Props = { store: IIssueStore }; export const IssuesListCard = observer((props: Props): JSX.Element => { + const unreadedStore = UnreadedFlagNs.CreateStoreFromLocalStorage(props.store); const detailsStore = IssueDetailsDialogNs.Store.create({ issue: props.store, - visible: false + visible: false, + unreadedFlagStore: unreadedStore }); return (