1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 02:03:39 +00:00

Merge branch 'main' into auth/pm-8111/browser-refresh-login-component

This commit is contained in:
Alec Rippberger
2024-09-25 22:07:51 -05:00
48 changed files with 1040 additions and 288 deletions

View File

@@ -72,7 +72,7 @@ export class CollectionsComponent implements OnInit {
if (this.organization.canEditAllCiphers) {
return !!(c as any).checked;
} else {
return !!(c as any).checked && c.readOnly == null;
return !!(c as any).checked && !c.readOnly;
}
})
.map((c) => c.id);