mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
* Fix modal-body div missing #583 * Revert "Fix modal-body div missing #583" This reverts commit 38f0cae82dae229cf929a52ba8d2d622b9449f72. * Fixing modal-body div missing #583
This commit is contained in:
@@ -129,7 +129,7 @@ export class PeopleComponent implements OnInit {
|
||||
}
|
||||
|
||||
loadMore() {
|
||||
if (this.users.length <= this.pageSize) {
|
||||
if (!this.users || this.users.length <= this.pageSize) {
|
||||
return;
|
||||
}
|
||||
const pagedLength = this.pagedUsers.length;
|
||||
@@ -331,7 +331,7 @@ export class PeopleComponent implements OnInit {
|
||||
if (searching && this.didScroll) {
|
||||
this.resetPaging();
|
||||
}
|
||||
return !searching && this.users.length > this.pageSize;
|
||||
return !searching && this.users && this.users.length > this.pageSize;
|
||||
}
|
||||
|
||||
private async doConfirmation(user: OrganizationUserUserDetailsResponse) {
|
||||
|
||||
Reference in New Issue
Block a user