There was an error while loading. Please reload this page.
1 parent f134c2d commit a65faf7Copy full SHA for a65faf7
project.clj
@@ -1,4 +1,4 @@
1
-(defproject org.clojars.intception/om-widgets "0.3.42"
+(defproject org.clojars.intception/om-widgets "0.3.43"
2
:description "Widgets for OM/React"
3
:url "https://github.com/orgs/intception/"
4
:license {:name "Eclipse Public License"
src/om_widgets/textinput.cljs
@@ -397,7 +397,8 @@
397
:name (:id state)
398
:hidden (:hidden state)
399
:className (clojure.string/join " " ["om-widgets-input-text" (:input-class state)])
400
- :autoComplete (:auto-complete state)
+ :autoComplete (or (:auto-complete state)
401
+ "off")
402
:readOnly (:read-only state)
403
:onKeyDown #(if (false? (handlekeydown target owner state %))
404
(.preventDefault %)
0 commit comments