mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
Disable ssh agent for organization items (#12240)
This commit is contained in:
@@ -198,7 +198,10 @@ export class SshAgentService implements OnDestroy {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const sshCiphers = ciphers.filter(
|
const sshCiphers = ciphers.filter(
|
||||||
(cipher) => cipher.type === CipherType.SshKey && !cipher.isDeleted,
|
(cipher) =>
|
||||||
|
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