From f967f6a87f966e34976976b8aee6e3570387a93c Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Mon, 22 Jun 2020 15:28:38 -0400 Subject: [PATCH] Fix a bug where placeholder text would not reappear post-input --- textinput/textinput.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/textinput/textinput.go b/textinput/textinput.go index ec35588..66cec33 100644 --- a/textinput/textinput.go +++ b/textinput/textinput.go @@ -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) }