mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: show-sub issue filter is true now by default (#1679)
This commit is contained in:
parent
3d7fe40035
commit
39274fd5fa
@ -83,7 +83,7 @@ export const initialState: StateType = {
|
|||||||
groupByProperty: null,
|
groupByProperty: null,
|
||||||
orderBy: "-created_at",
|
orderBy: "-created_at",
|
||||||
showEmptyGroups: true,
|
showEmptyGroups: true,
|
||||||
showSubIssues: false,
|
showSubIssues: true,
|
||||||
calendarDateRange: "",
|
calendarDateRange: "",
|
||||||
filters: {
|
filters: {
|
||||||
type: null,
|
type: null,
|
||||||
@ -158,7 +158,7 @@ export const reducer: ReducerFunctionType = (state, action) => {
|
|||||||
case "SET_SHOW_SUB_ISSUES": {
|
case "SET_SHOW_SUB_ISSUES": {
|
||||||
const newState = {
|
const newState = {
|
||||||
...state,
|
...state,
|
||||||
showSubIssues: payload?.showSubIssues || false,
|
showSubIssues: payload?.showSubIssues || true,
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user