mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 22:09:12 +02:00
chore: resolved the build error in the rootstore (#673)
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
import { enableStaticRendering } from "mobx-react";
|
||||
// plane web store
|
||||
import { RootStore } from "@/plane-web/store/root.store";
|
||||
// stores
|
||||
import { CommandPaletteStore, ICommandPaletteStore } from "./command-palette.store";
|
||||
import { CycleStore, ICycleStore } from "./cycle.store";
|
||||
@@ -68,7 +70,7 @@ export class CoreRootStore {
|
||||
this.moduleFilter = new ModuleFilterStore(this);
|
||||
this.projectView = new ProjectViewStore(this);
|
||||
this.globalView = new GlobalViewStore(this);
|
||||
this.issue = new IssueRootStore(this);
|
||||
this.issue = new IssueRootStore(this as unknown as RootStore);
|
||||
this.state = new StateStore(this);
|
||||
this.label = new LabelStore(this);
|
||||
this.dashboard = new DashboardStore(this);
|
||||
@@ -97,7 +99,7 @@ export class CoreRootStore {
|
||||
this.moduleFilter = new ModuleFilterStore(this);
|
||||
this.projectView = new ProjectViewStore(this);
|
||||
this.globalView = new GlobalViewStore(this);
|
||||
this.issue = new IssueRootStore(this);
|
||||
this.issue = new IssueRootStore(this as unknown as RootStore);
|
||||
this.state = new StateStore(this);
|
||||
this.label = new LabelStore(this);
|
||||
this.dashboard = new DashboardStore(this);
|
||||
|
||||
Reference in New Issue
Block a user