mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
minor build fix (#5929)
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user