Skip to content

Commit 3130c17

Browse files
committed
disable l shortcut while typing search query
1 parent 99e170b commit 3130c17

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Fixed
9+
- uppercase `L` was used instead of lowercase version for latest issues
810

911
## [0.10.0] - 2024-07-26
1012
### Added

gojira/dayview.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ func NewDayView() *DayView { //nolint:funlen
9494
app.ui.app.SetFocus(dayView.searchInput)
9595
return nil
9696
}
97-
if event.Rune() == 'L' {
97+
if event.Rune() == 'l' && app.ui.app.GetFocus() != dayView.searchInput {
9898
go func() {
9999
app.ui.loaderView.Show("Searching...")
100100
defer func() {

0 commit comments

Comments
 (0)