mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +00:00
Remove limitation on ssh agent + collections (#15441)
This commit is contained in:
@@ -153,10 +153,7 @@ export class SshAgentService implements OnDestroy {
|
|||||||
|
|
||||||
if (isListRequest) {
|
if (isListRequest) {
|
||||||
const sshCiphers = ciphers.filter(
|
const sshCiphers = ciphers.filter(
|
||||||
(cipher) =>
|
(cipher) => cipher.type === CipherType.SshKey && !cipher.isDeleted,
|
||||||
cipher.type === CipherType.SshKey &&
|
|
||||||
!cipher.isDeleted &&
|
|
||||||
cipher.organizationId == null,
|
|
||||||
);
|
);
|
||||||
const keys = sshCiphers.map((cipher) => {
|
const keys = sshCiphers.map((cipher) => {
|
||||||
return {
|
return {
|
||||||
@@ -266,10 +263,7 @@ export class SshAgentService implements OnDestroy {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const sshCiphers = ciphers.filter(
|
const sshCiphers = ciphers.filter(
|
||||||
(cipher) =>
|
(cipher) => cipher.type === CipherType.SshKey && !cipher.isDeleted,
|
||||||
cipher.type === CipherType.SshKey &&
|
|
||||||
!cipher.isDeleted &&
|
|
||||||
cipher.organizationId == null,
|
|
||||||
);
|
);
|
||||||
const keys = sshCiphers.map((cipher) => {
|
const keys = sshCiphers.map((cipher) => {
|
||||||
return {
|
return {
|
||||||
|
|||||||
Reference in New Issue
Block a user