Fix a bug where placeholder text would not reappear post-input

This commit is contained in:
Christian Rocha 2020-06-22 15:28:38 -04:00
parent 35c3cd626d
commit f967f6a87f
No known key found for this signature in database
GPG Key ID: D6CC7A16E5878018

View File

@ -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)
}