mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
fix: removed redundant function to get draft issues
This commit is contained in:
@@ -37,7 +37,7 @@ export interface IIssueDraftStore {
|
||||
|
||||
// computed
|
||||
getIssueType: IIssueType | null;
|
||||
getIssues: IIssueGroupedStructure | IIssueGroupWithSubGroupsStructure | IIssueUnGroupedStructure | null;
|
||||
getDraftIssues: IIssueGroupedStructure | IIssueGroupWithSubGroupsStructure | IIssueUnGroupedStructure | null;
|
||||
|
||||
// actions
|
||||
fetchIssues: (workspaceSlug: string, projectId: string) => Promise<any>;
|
||||
@@ -67,7 +67,7 @@ export class IssueDraftStore implements IIssueDraftStore {
|
||||
draftIssues: observable.ref,
|
||||
// computed
|
||||
getIssueType: computed,
|
||||
getIssues: computed,
|
||||
getDraftIssues: computed,
|
||||
// actions
|
||||
fetchIssues: action,
|
||||
createDraftIssue: action,
|
||||
@@ -110,14 +110,6 @@ export class IssueDraftStore implements IIssueDraftStore {
|
||||
return this.draftIssues?.[projectId]?.[issueType] || null;
|
||||
}
|
||||
|
||||
get getIssues() {
|
||||
const projectId: string | null = this.rootStore?.project?.projectId;
|
||||
const issueType = this.getIssueType;
|
||||
if (!projectId || !issueType) return null;
|
||||
|
||||
return this.draftIssues?.[projectId]?.[issueType] || null;
|
||||
}
|
||||
|
||||
fetchIssues = async (workspaceSlug: string, projectId: string) => {
|
||||
try {
|
||||
this.loader = true;
|
||||
|
||||
Reference in New Issue
Block a user