mirror of
https://github.com/Maks1mS/bubbles.git
synced 2025-04-03 14:03:44 +03:00
Fix a bug where placeholder text would not reappear post-input
This commit is contained in:
parent
35c3cd626d
commit
f967f6a87f
@ -361,7 +361,7 @@ func View(model tea.Model) string {
|
||||
}
|
||||
|
||||
// Placeholder text
|
||||
if m.value == nil && m.Placeholder != "" {
|
||||
if len(m.value) == 0 && m.Placeholder != "" {
|
||||
return placeholderView(m)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user