mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
Fix glob processing in npm. Ban single param parens (#257)
This commit is contained in:
@@ -79,7 +79,7 @@ export class GroupingsComponent {
|
||||
}
|
||||
const collections = await this.collectionService.getAllDecrypted();
|
||||
if (organizationId != null) {
|
||||
this.collections = collections.filter((c) => c.organizationId === organizationId);
|
||||
this.collections = collections.filter(c => c.organizationId === organizationId);
|
||||
} else {
|
||||
this.collections = collections;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user