implement code editor as a component
add notif on status 'Installing' click modify AppInstallModal
This commit is contained in:
parent
5b728d35d7
commit
3edc690075
13 changed files with 152 additions and 76 deletions
|
|
@ -31,6 +31,11 @@ const appsReducer = (state: any = initialUsersState, action: any) => {
|
|||
...state,
|
||||
currentApp: action.payload,
|
||||
};
|
||||
case AppActionTypes.CLEAR_APP:
|
||||
return {
|
||||
...state,
|
||||
currentApp: {},
|
||||
};
|
||||
default:
|
||||
return state;
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue