diff --git a/ui/app/os_js.go b/ui/app/os_js.go index c2e75295..af87db1d 100644 --- a/ui/app/os_js.go +++ b/ui/app/os_js.go @@ -67,7 +67,7 @@ func createWindow(opts *WindowOptions) error { } func createTextArea(doc js.Value) js.Value { - tarea := doc.Call("createElement", "textarea") + tarea := doc.Call("createElement", "input") style := tarea.Get("style") style.Set("width", "1px") style.Set("height", "1px")