fix: minor ui fixes (#515)

* fix: sidebar arror positioning

* chore: show empty groups default value as true
This commit is contained in:
Aaryan Khandelwal
2023-03-23 23:25:30 +05:30
committed by GitHub
parent f3b7fc6eb5
commit 7892a563b7
2 changed files with 8 additions and 14 deletions

View File

@@ -60,7 +60,7 @@ export const initialState: StateType = {
issueView: "list",
groupByProperty: null,
orderBy: "created_at",
showEmptyGroups: false,
showEmptyGroups: true,
filters: {
type: null,
priority: null,
@@ -122,7 +122,7 @@ export const reducer: ReducerFunctionType = (state, action) => {
case "SET_SHOW_EMPTY_STATES": {
const newState = {
...state,
showEmptyGroups: payload?.showEmptyGroups || false,
showEmptyGroups: payload?.showEmptyGroups || true,
};
return {