minor build fix (#5929)

This commit is contained in:
rahulramesha
2024-10-29 20:51:56 +05:30
committed by GitHub
parent 22b616b03c
commit 3f429a1dab

View File

@@ -16,6 +16,7 @@ import {
IIssueActivityStoreActions,
TActivityLoader,
} from "@/plane-web/store/issue/issue-details/activity.store";
import { RootStore } from "@/plane-web/store/root.store";
import { TIssueRelationTypes } from "@/plane-web/types";
import { IIssueRootStore } from "../root.store";
import { IIssueAttachmentStore, IssueAttachmentStore, IIssueAttachmentStoreActions } from "./attachment.store";
@@ -194,7 +195,7 @@ export class IssueDetail implements IIssueDetail {
this.issue = new IssueStore(this);
this.reaction = new IssueReactionStore(this);
this.attachment = new IssueAttachmentStore(rootStore);
this.activity = new IssueActivityStore(rootStore.rootStore);
this.activity = new IssueActivityStore(rootStore.rootStore as RootStore);
this.comment = new IssueCommentStore(this);
this.commentReaction = new IssueCommentReactionStore(this);
this.subIssues = new IssueSubIssuesStore(this);