diff --git a/ui/stash.go b/ui/stash.go index 6c34c29..9ea2d7d 100644 --- a/ui/stash.go +++ b/ui/stash.go @@ -794,10 +794,7 @@ func stashView(m stashModel) string { logoOrSearch := glowLogoView(" Glow ") // If we're filtering we replace the logo with the search field - if m.state == stashStateSearchNotes { - logoOrSearch = textinput.View(m.searchInput) - } else if m.state == stashStateShowFiltered { - m.searchInput.TextColor = m.searchInput.PlaceholderColor + if m.state == stashStateSearchNotes || m.state == stashStateShowFiltered { logoOrSearch = textinput.View(m.searchInput) }