minor build fix (#5929)
This commit is contained in:
parent
22b616b03c
commit
3f429a1dab
1 changed files with 2 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue