1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-04 01:23:57 +00:00

[PM-19579] - add sshKey option to desktop (#14402)

* add sshKey option to desktop

* fix add new sshKey

* revert removal of catch

* revert removal of catch
This commit is contained in:
Jordan Aasen
2025-05-01 13:03:11 -07:00
committed by GitHub
parent 4292744ca8
commit 23e7f120fd
5 changed files with 31 additions and 22 deletions

View File

@@ -103,6 +103,12 @@ export class FileMenu extends FirstMenu implements IMenubarMenu {
click: () => this.sendMessage("newSecureNote"),
accelerator: "CmdOrCtrl+Shift+S",
},
{
id: "typeSshKey",
label: this.localize("typeSshKey"),
click: () => this.sendMessage("newSshKey"),
accelerator: "CmdOrCtrl+Shift+K",
},
];
}