bug fixed

This commit is contained in:
richard-loafle 2020-02-05 11:07:43 +09:00
parent 370fa44579
commit 0766bb6134

View File

@ -193,19 +193,7 @@ export class OrganizationComponent
)
)
.subscribe(list => {
this.myDepartmentUserInfoList = list;
if (!this.selectedDepartmentUserInfoList) {
this.selectedDepartmentUserInfoList = list;
}
if (!!this.vsDeptUser) {
this.vsDeptUser.scrollToIndex(0, true, 0, 0);
}
if (!!this.psDirectiveRef) {
this.psDirectiveRef.update();
}
});
if (!list) {
this.store
.pipe(
take(1),
@ -234,6 +222,21 @@ export class OrganizationComponent
})
)
.subscribe();
return;
}
this.myDepartmentUserInfoList = list;
if (!this.selectedDepartmentUserInfoList) {
this.selectedDepartmentUserInfoList = list;
}
if (!!this.vsDeptUser) {
this.vsDeptUser.scrollToIndex(0, true, 0, 0);
}
if (!!this.psDirectiveRef) {
this.psDirectiveRef.update();
}
});
}
ngAfterViewChecked(): void {