forked from github/plane
chore: type check
This commit is contained in:
parent
60883baea7
commit
66022ea478
@ -1309,7 +1309,7 @@ class IssueFilterStore implements IIssueFilterStore {
|
|||||||
};
|
};
|
||||||
|
|
||||||
runInAction(() => {
|
runInAction(() => {
|
||||||
this.issueFilters = _issuesFiltersModuleResponse;
|
this.issueFilters = _issuesFiltersModuleResponse as any;
|
||||||
this.loader = false;
|
this.loader = false;
|
||||||
this.error = null;
|
this.error = null;
|
||||||
});
|
});
|
||||||
@ -1407,7 +1407,7 @@ class IssueFilterStore implements IIssueFilterStore {
|
|||||||
};
|
};
|
||||||
|
|
||||||
runInAction(() => {
|
runInAction(() => {
|
||||||
this.issueFilters = _issuesFiltersCycleResponse;
|
this.issueFilters = _issuesFiltersCycleResponse as any;
|
||||||
this.loader = false;
|
this.loader = false;
|
||||||
this.error = null;
|
this.error = null;
|
||||||
});
|
});
|
||||||
@ -1501,7 +1501,7 @@ class IssueFilterStore implements IIssueFilterStore {
|
|||||||
};
|
};
|
||||||
|
|
||||||
runInAction(() => {
|
runInAction(() => {
|
||||||
this.issueFilters = _issuesFiltersViewResponse;
|
this.issueFilters = _issuesFiltersViewResponse as any;
|
||||||
this.loader = false;
|
this.loader = false;
|
||||||
this.error = null;
|
this.error = null;
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user