This commit is contained in:
veeso
2022-08-30 15:10:41 +02:00
parent a22c5025d7
commit 96df152220
2 changed files with 4 additions and 1 deletions

View File

@@ -32,6 +32,8 @@ Released on ??
> ⭐ 500 stars update 🌟 > ⭐ 500 stars update 🌟
- **Bugfix**
- Fixed [Issue 122](https://github.com/veeso/termscp/issues/122)
- Dependencies: - Dependencies:
- Bump `argh` to `0.1.8` - Bump `argh` to `0.1.8`
- Bump `chrono` to `0.4.22` - Bump `chrono` to `0.4.22`

View File

@@ -143,7 +143,8 @@ impl Component<Msg, NoUserEvent> for SshKeys {
_ => Some(Msg::None), _ => Some(Msg::None),
}, },
Event::Keyboard(KeyEvent { Event::Keyboard(KeyEvent {
code: Key::Delete, .. code: Key::Delete | Key::Char('e'),
..
}) => Some(Msg::Ssh(SshMsg::ShowDelSshKeyPopup)), }) => Some(Msg::Ssh(SshMsg::ShowDelSshKeyPopup)),
Event::Keyboard(KeyEvent { Event::Keyboard(KeyEvent {
code: Key::Char('n'), code: Key::Char('n'),