bug fixed
This commit is contained in:
parent
35d9cc6a9b
commit
d804b01843
8
package-lock.json
generated
8
package-lock.json
generated
|
@ -2374,7 +2374,8 @@
|
|||
},
|
||||
"@ucap/ng-store-authentication": {
|
||||
"version": "file:pack/ucap-ng-store-authentication-0.0.4.tgz",
|
||||
"integrity": "sha512-auUqI5uS1VblhrcPSaHragi6mZ2E6KCJE+SjW05QSe+pNg2afmuCheQNC8bTGkaU0iDbLjgEwmPuhBfLczihRg=="
|
||||
"integrity": "sha512-auUqI5uS1VblhrcPSaHragi6mZ2E6KCJE+SjW05QSe+pNg2afmuCheQNC8bTGkaU0iDbLjgEwmPuhBfLczihRg==",
|
||||
"dev": true
|
||||
},
|
||||
"@ucap/ng-store-chat": {
|
||||
"version": "file:pack/ucap-ng-store-chat-0.0.3.tgz",
|
||||
|
@ -2382,9 +2383,8 @@
|
|||
"dev": true
|
||||
},
|
||||
"@ucap/ng-store-group": {
|
||||
"version": "file:pack/ucap-ng-store-group-0.0.4.tgz",
|
||||
"integrity": "sha512-UTvyFws2Gl+yFAIAj76oHhsJHowH0sgZFtdNeLRYouB970z1yqUsPLczyZTH6INEukBclANwEzeZxM2+SaeiUg==",
|
||||
"dev": true
|
||||
"version": "file:pack/ucap-ng-store-group-0.0.5.tgz",
|
||||
"integrity": "sha512-NNqnSiyQWbBIWLjXsBBxkdCHlRkMPRF8+IXq7scUgG7aNlUA0SGuntUbghRPxAJLQNuMe/csQziOlqHn98sJfw=="
|
||||
},
|
||||
"@ucap/ng-store-organization": {
|
||||
"version": "file:pack/ucap-ng-store-organization-0.0.3.tgz",
|
||||
|
|
|
@ -167,7 +167,7 @@
|
|||
"@ucap/ng-protocol-umg": "file:pack/ucap-ng-protocol-umg-0.0.1.tgz",
|
||||
"@ucap/ng-store-authentication": "file:pack/ucap-ng-store-authentication-0.0.4.tgz",
|
||||
"@ucap/ng-store-chat": "file:pack/ucap-ng-store-chat-0.0.3.tgz",
|
||||
"@ucap/ng-store-group": "file:pack/ucap-ng-store-group-0.0.4.tgz",
|
||||
"@ucap/ng-store-group": "file:pack/ucap-ng-store-group-0.0.5.tgz",
|
||||
"@ucap/ng-store-organization": "file:pack/ucap-ng-store-organization-0.0.3.tgz",
|
||||
"@ucap/ng-ui": "file:pack/ucap-ng-ui-0.0.3.tgz",
|
||||
"@ucap/ng-ui-authentication": "file:pack/ucap-ng-ui-authentication-0.0.14.tgz",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@ucap/ng-store-group",
|
||||
"version": "0.0.4",
|
||||
"version": "0.0.5",
|
||||
"publishConfig": {
|
||||
"registry": "http://10.81.13.221:8081/nexus/repository/npm-ucap/"
|
||||
},
|
||||
|
|
|
@ -53,8 +53,7 @@ export class Effects {
|
|||
postLoginSuccessForBuddy2$ = createEffect(() => {
|
||||
return this.actions$.pipe(
|
||||
ofType(LoginActions.loginSuccess),
|
||||
map(action => action.loginRes),
|
||||
map(req => buddy2())
|
||||
map(action => buddy2())
|
||||
);
|
||||
});
|
||||
|
||||
|
|
|
@ -57,8 +57,7 @@ export class Effects {
|
|||
postLoginSuccessForGroups$ = createEffect(() => {
|
||||
return this.actions$.pipe(
|
||||
ofType(LoginActions.loginSuccess),
|
||||
map(action => action.loginRes),
|
||||
map(req => groups())
|
||||
map(action => groups())
|
||||
);
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user