Skip to content

Commit 0a462ea

Browse files
committed
fix: TT 649 Display last 5 10 projects below Project Selection input box
1 parent d0ae953 commit 0a462ea

File tree

1 file changed

+2
-1
lines changed
  • src/app/modules/customer-management/components/projects/components/store

1 file changed

+2
-1
lines changed

src/app/modules/customer-management/components/projects/components/store/project.reducer.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ export const initialState = {
2222
export const projectReducer = (state: ProjectState = initialState, action: ProjectActions) => {
2323
const projects = [...state.customerProjects];
2424
switch (action.type) {
25-
case ProjectActionTypes.LOAD_PROJECTS || ProjectActionTypes.LOAD_RECENT_PROJECTS: {
25+
case ProjectActionTypes.LOAD_RECENT_PROJECTS:
26+
case ProjectActionTypes.LOAD_PROJECTS: {
2627
return {
2728
...state,
2829
isLoading: true,

0 commit comments

Comments
 (0)