1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-13 15:03:26 +00:00

Merge branch 'main' into ps/extension-refresh

This commit is contained in:
Victoria League
2024-09-26 10:36:05 -04:00
committed by GitHub
56 changed files with 1663 additions and 992 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);