We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7590e13 commit dc58240Copy full SHA for dc58240
help/help.go
@@ -96,7 +96,7 @@ func New() Model {
96
var NewModel = New
97
98
// Update helps satisfy the Bubble Tea Model interface. It's a no-op.
99
-func (m Model) Update(msg tea.Msg) (Model, tea.Cmd) {
+func (m Model) Update(_ tea.Msg) (Model, tea.Cmd) {
100
return m, nil
101
}
102
textinput/textinput.go
@@ -516,7 +516,8 @@ func (m Model) echoTransform(v string) string {
516
return strings.Repeat(string(m.EchoCharacter), rw.StringWidth(v))
517
case EchoNone:
518
return ""
519
-
+ case EchoNormal:
520
+ return v
521
default:
522
return v
523
0 commit comments