mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
Null check allUsers (#515)
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 8438cafbd0...2de8c5ed16
@@ -122,7 +122,7 @@ export class PeopleComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get allCount() {
|
get allCount() {
|
||||||
return this.allUsers.length;
|
return this.allUsers != null ? this.allUsers.length : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
get invitedCount() {
|
get invitedCount() {
|
||||||
|
|||||||
Reference in New Issue
Block a user