Skip to content

Commit

Permalink
fix placeholder style
Browse files Browse the repository at this point in the history
  • Loading branch information
pomdtr committed Nov 21, 2023
1 parent 5d37b1e commit d4bd2a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions internal/tui/detail.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ func NewDetail(text string, actions ...types.Action) *Detail {
filter.DrawLines = true

input := textinput.New()
input.PlaceholderStyle = lipgloss.NewStyle().Faint(true)
input.Prompt = ""
input.Placeholder = "Search Actions..."

Expand Down
1 change: 1 addition & 0 deletions internal/tui/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ func NewList(items ...types.ListItem) *List {

input := textinput.New()
input.Prompt = ""
input.PlaceholderStyle = lipgloss.NewStyle().Faint(true)
input.Placeholder = "Search Items..."

list := &List{
Expand Down

0 comments on commit d4bd2a7

Please sign in to comment.