diff --git a/CHANGELOG.md b/CHANGELOG.md index 655402a9..0c087a7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * commit msg history ordered the wrong way ([#1445](https://github.com/extrawurst/gitui/issues/1445)) * improve help documentation for amend cmd ([#1448](https://github.com/extrawurst/gitui/issues/1448)) * lag issue when showing files tab ([#1451](https://github.com/extrawurst/gitui/issues/1451)) +* fix key binding shown in bottom bar for `stash_open` ([#1454](https://github.com/extrawurst/gitui/issues/1454)) ## [0.22.1] - 2022-11-22 diff --git a/src/strings.rs b/src/strings.rs index 9cd52986..a096a9d9 100644 --- a/src/strings.rs +++ b/src/strings.rs @@ -1118,7 +1118,7 @@ pub mod commands { CommandText::new( format!( "Inspect [{}]", - key_config.get_hint(key_config.keys.focus_right), + key_config.get_hint(key_config.keys.stash_open), ), "open stash commit details (allows to diff files)", CMD_GROUP_STASHES,