forked from github/plane
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,
|
||||
orderBy: "-created_at",
|
||||
showEmptyGroups: true,
|
||||
showSubIssues: false,
|
||||
showSubIssues: true,
|
||||
calendarDateRange: "",
|
||||
filters: {
|
||||
type: null,
|
||||
@ -158,7 +158,7 @@ export const reducer: ReducerFunctionType = (state, action) => {
|
||||
case "SET_SHOW_SUB_ISSUES": {
|
||||
const newState = {
|
||||
...state,
|
||||
showSubIssues: payload?.showSubIssues || false,
|
||||
showSubIssues: payload?.showSubIssues || true,
|
||||
};
|
||||
|
||||
return {
|
||||
|
Loading…
Reference in New Issue
Block a user