1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-19 10:54:00 +00:00

Merge branch 'main' into km/auto-kdf

This commit is contained in:
Bernd Schoolmann
2025-11-03 12:49:56 +01:00
committed by GitHub
316 changed files with 16152 additions and 3166 deletions

View File

@@ -102,7 +102,7 @@ export class ListCommand {
if (options.folderId === "notnull" && c.folderId != null) {
return true;
}
const folderId = options.folderId === "null" ? null : options.folderId;
const folderId = options.folderId === "null" ? undefined : options.folderId;
if (folderId === c.folderId) {
return true;
}
@@ -112,7 +112,8 @@ export class ListCommand {
if (options.organizationId === "notnull" && c.organizationId != null) {
return true;
}
const organizationId = options.organizationId === "null" ? null : options.organizationId;
const organizationId =
options.organizationId === "null" ? undefined : options.organizationId;
if (organizationId === c.organizationId) {
return true;
}