This commit is contained in:
leejinho 2020-02-05 11:13:12 +09:00
commit e2f271eba4

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 {