feat: create label option in create issue modal (#281)
This commit is contained in:
parent
fcba332589
commit
6f0539f01d
20 changed files with 580 additions and 478 deletions
|
|
@ -58,7 +58,7 @@ type ReducerFunctionType = (state: StateType, action: ReducerActionType) => Stat
|
|||
export const initialState: StateType = {
|
||||
issueView: "list",
|
||||
groupByProperty: null,
|
||||
orderBy: null,
|
||||
orderBy: "created_at",
|
||||
filterIssue: null,
|
||||
};
|
||||
|
||||
|
|
@ -122,6 +122,7 @@ export const reducer: ReducerFunctionType = (state, action) => {
|
|||
...payload,
|
||||
};
|
||||
}
|
||||
|
||||
default: {
|
||||
return state;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue