[PM-11497] If an org has only one collection, check it by default (#10806)

Signed-off-by: Shlomo Zalman Heigh <shlomozalmanheigh@gmail.com>
This commit is contained in:
Shlomo Zalman Heigh 2024-10-07 10:22:10 -04:00 committed by GitHub
parent 9ea9c3a932
commit a4123cb8ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -605,6 +605,10 @@ export class AddEditComponent implements OnInit, OnDestroy {
this.collections = this.writeableCollections?.filter(
(c) => c.organizationId === this.cipher.organizationId,
);
// If there's only one collection, check it by default
if (this.collections.length === 1) {
(this.collections[0] as any).checked = true;
}
const org = await this.organizationService.get(this.cipher.organizationId);
if (org != null) {
this.cipher.organizationUseTotp = org.useTotp;